我有下面的代碼:jQuery的:排除元素
$(document).ready(function()
{
$('a[rel]').each(function()
{
$(this).qtip(
{
content: {
text: '<img class="middle" src="i/icon_processing.gif" alt="l">Loading...',
ajax: {
url: $(this).attr('rel')
},
title: {
text: $(this).text(),
button: true
}
}
})
.click(function() { return false; });
});
});
該代碼使得網頁上的所有相對與醉意jQuery插件工作。 問題是,我有一個特定的div與某些id,該內容與rel需要從此功能中排除。
這隻會消除「IdOfElement」的ID的標籤,而不是標籤內的DIV與該ID。 – 2011-06-06 11:17:58