首页 相关文章 jquery 问答知识整理

jquery 问答知识整理

获取ID : $(this).attr("id");
:not用法
1. 列表用法

代码如下:


var notList = [];
notList.push("#%=txtSuggest.ClientID %");
var textElements = $("input[type=text]:not(" + notList + ")");
var firstFocusItem = null;
//遍历Type=Text的元素
textElements.each(function(i) {
//TODO
});

2.排它用法

代码如下:


$("table[id^=tb]:not([id=tbBasicInfo])").each(function() {
alert($(this).attr("id"));
});

如果不加[]的话, $("table[id^=tb]:not(tbBasicInfo)"),这样是不行的
这时not是基于前者id^=tb的tb进行:not操作的
恢复BackG...[ 查看全文 ]

2016-02-19 标签:

jquery 问答知识整理的相关文章

手机页面
收藏网站 回到头部