`
jiasky
  • 浏览: 23621 次
  • 性别: Icon_minigender_1
  • 来自: 上海
文章分类
社区版块
存档分类
最新评论

jquery-1.2.6和jquery-1.6.2兼容性问题

 
阅读更多

刚将jquery-1.2.6.js替换成query-1.6.2.js文件时发现一个问题,

 

<script type="text/javascript" src="js/jquery-1.6.2.js"></script>

 

<input type="checkbox" onclick="select_cancel($(this));" class="select">
<br>
<input type="checkbox" name="entityIds" class="select">
<br>
<input type="checkbox" name="entityIds" class="select">
<br>

 

function select_cancel(obj) {
            //ignore undefined
            var selected = false;
            if (obj.attr("checked")) {
                selected = true;
            }
            obj.click(function() {
                $("input[@name='entityIds']").each(function() {
                    $(this).attr("checked", selected);
                });
            });
        }

         此时在jquery-1.6.2.js第4057行报出语法解析错误:

Sizzle.error = function( msg ) {
	throw "Syntax error, unrecognized expression: " + msg;
};

但当将1.6.2换成1.2.6时却能正常解析,可见在1.6.2版本中对去掉了 @name过滤了方式 ,

即在使用jquery-1.6.2.js时将$("input[@name ='entityIds']")改为$("input[name='entityIds']"),也能正常解析。

 

 

1
0
分享到:
评论

相关推荐

    jquery所有版本集合

    jquery-1.2.6.js jquery-1.2.6.min.js jquery-1.3.0.js jquery-1.3.0.min.js jquery-1.3.1.js jquery-1.3.1.min.js jquery-1.3.2.js jquery-1.3.2.min.js jquery-1.4.0.js jquery-1.4.0.min.js jquery-1.4.1.js ...

    jquery所有版本

    jquery-1.2.6.js jquery-1.2.6.min.js jquery-1.3.0.js jquery-1.3.0.min.js jquery-1.3.1.js jquery-1.3.1.min.js jquery-1.3.2.js jquery-1.3.2.min.js jquery-1.4.0.js jquery-1.4.0.min.js jquery-1.4.1.js ...

    jquery多个版本及API

    jquery-1.2.6.js jquery-1.2.6.min.js jquery-1.3.0.js jquery-1.3.0.min.js jquery-1.3.1.js jquery-1.3.1.min.js jquery-1.3.2.js jquery-1.3.2.min.js j query-1.4.0.js jquery-1.4.0.min.js jquery-1.4.1.js ...

    jquery版本库

    jquery-1.7.1 jquery-1.7 jquery-1.6.4 jquery-1.6.3 jquery-1.6.2 jquery-1.6.1 jquery-1.6 jquery-1.5.2 jquery-1.5.1 jquery-1.5 jquery-1.4.4 jquery-1.4.3 jquery-1.4.2 jquery-1.4.1 jquery-1.3.2 jquery-...

    JQuery1.6.2+min.js+vsdoc

    **jQuery 1.6.2-min.js** 是jQuery 1.6.2的压缩版,通过删除不必要的空格、注释和优化代码结构,减少了文件大小,以提高网页加载速度,适合生产环境使用。 **jQuery 1.6.2-vsdoc.js** 是Visual Studio的文档文件,...

    jquery各版本的js文件打包下载

    jQuery1.0至1.7 目前最全版本 chm:三个常用版本的中文api手册,带速查表 JQ1.0只有压缩版 min:压缩版 vsdoc:VisualStudio 包含以下现有版本: 1.7.1 1.7 1.6.4 1.6.3 1.6.2 1.6.1 1.6 1.5.2 1.5.1 1.5 1.4.4 1.4.3 ...

    开源框架jar包(百度云盘)

    Javascript & jQuery &Ajax&JSON · jquery-1.7.2.js · jquery-1.7.2.min.js · jQuery插件 · EasyUI+v1.3.4官方API中文版 · EasyUI+v1.3.4官方API中文版.rar · jackson-src-1.7.1.zip · ext-3.0.0.zip...

    JQuery各个版本js库

    JQuery各个版本,算是比较全面的,需要的自己下载: 1.1.4 1.2.3 1.2.6 1.3.1 1.3.2 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.5 1.5.1 1.5.2 1.6 1.6.1 1.6.2 1.6.3 1.6.4 1.7 1.7.1 1.7.2 1.8.0 1.8.1 1.8.2 1.8.3 1.9.0 ...

Global site tag (gtag.js) - Google Analytics