0
我想選擇頁面jQuery的選擇 -
$table = $(".table");
console.log($table);//this is fine
$edit_butts = $(".btn_edit", $table);
console.log($edit_butts);//elements dimmed and seemingly detached from dom - no click binding etc work
的一部分內的一些元素的元素(分離的,在Firebug變暗了)有誰現在爲什麼要將這些要素得到獨棟?
在控制檯
bright and when clicked element found in dom
jQuery(table.table)
dimmed, when clicked firebug goes to edit screen
jQuery(div.btn_edit, div.btn_edit, div.btn_edit, div.btn_edit, div.btn_edit, div.btn_edit, div.btn_edit, div.btn_edit)
任何幫助非常讚賞。
另外我應該指出,但我不確定相關的頁面部分是否包含knockoutjs指令。
<table class="table>
<!-- ko with: model.item -->
edit butts
<div class="btn_edit"></div>
<!-- /ko -->
</table>