我困在我的小jQuery腳本中。 我想爲特定表格的行製作複選框。 這將是一個grepmonkey腳本,所以我不能編輯網站的來源。jQuery - 在特定表格中添加複選框
這是HTML的設置方式:
<html>
<head></head>
<body>
<table class = test1></table>
<table class = test2></table>
<table class = goal>
<thead>
some some <tr>
</thead>
<tbody>
here are the table rows where I want to put the checkboxes
</tbody>
</table>
</body>
</html>
的問題是,在把複選框中的每行「TR」它可以在所有的表中找到。 最後我的代碼:
var $ = unsafeWindow.jQuery
$(document).ready(function(){
$("table.goal").ready(function(){
$("tbody").ready(function(){
$("tr").prepend('<td><input type="checkbox" name="x" value="y"></td>');
});
});
});
請,有人會這麼好心給我解釋一下,這是爲什麼不發揮預期? 在此先感謝。
謝謝。 :)我堅持了2個小時。 –