-3
如何從複選框獲取'id'屬性?如何使用jQuery檢索屬性
<ul class="tags-list">
<li><input type="checkbox" alt="addtag" class="addtag" name="checked_name[]" id="71"><span class="tag-val">1974 </span></li>
等 它的回報,我需要:
$('input.addtag').click(function(){
alert($(this).attr('id'));
});
上
jsfiddle
但回報。 在我的頁面上,它的返回值[object Object]
你可以試試'this.id' – Pete
其工作細.. @皮特爲什麼這個問題真正question..not只是建議altenatives –
您需要向我們展示了足夠的代碼是*不起作用*使我們重現問題。目前,我最好的猜測是,在你的頁面上,'$'不是jQuery。 – Quentin