我想通过创建一个html表来调用一个函数。 我想调用的函数叫做setHooks。 更确切地说,这次我想调用函数(setHooks)如果添加了我的表部件,那么函数可以检查复选框是否需要一个钩子 HTML
'<td><form action=""><div class="myClass"><label><input type="checkbox" name="box'+index+'" '+setHooks('daten.identification','MyBox'+pageForBoxes+''+index) id="MyBox'+pageForBoxes+''+index+'" value="'+daten.identification+'" > Anzeigen</label></div></form></td></tr>');
那就是我尝试过的但是它不会起作用你能帮帮我吗?
JS
` function setHooks(id,myBox){
if(boxArr.indexof(id) != -1){
$(myBox).attr('checked', true)
}
}`
答案 0 :(得分:1)
请参阅script
末尾的td
标记:
<td>
<form action="">
<div class="myClass">
<label>
<input type="checkbox" id="MyBox'+pageForBoxes+ ''+index+ '" value="'+daten.identification+ '"> Anzeigen
</label>
</div>
</form>
<script>
setHooks('daten.identification','MyBox' + pageForBoxes + '' + index); // Call it here
</script>
</td>