我是 javascript 的新手。在 javascript 中,我正在创建一个 html 复选框并插入到指定的 div 中。在复选框 html 中调用了 onclick 函数。我必须将整个this
函数传递给函数,或者只传递函数checked
中的属性。为了更清楚,这是我的代码
childrens = childrens + "<div class='span4'><input type='checkbox' class='checkcheck' onclick = 'fillin("+this+");' name='"+name+"' alt='"+fromwhere+"' title='"+key+"'> "+name+"</input></div>";<br>
<script>
function fillin(test)
{
alert(test);
}
</script>
我在正确的路径上吗?我必须检查复选框是否被选中。
PS: fromwhere,key,name 动态变化