//MySQL Query
while ($data = $reponse->fetch()) { ?>
<div>
<input type="checkbox" name="<?php echo $data['id']?>"
value="<?php echo $data['city']?>"
onClick="checked();"
<?php
if(isset($data['active']) && $data['active'] == '1')
{ echo "checked"; }
?>
>
</div>
<?php
}
?>
<div id="test"> </div>
使用Javascript:
function checked() {
document.getElementById("test").innerHTML = "hello World";
}
如果选中此框,我会尝试使用javascript查看,但此代码中没有显示任何内容...
这个功能似乎没有被召唤 控制台给了我奇怪的反馈:
Uncaught TypeError: boolean is not a function localhost/:363
Uncaught TypeError: boolean is not a function (index):366
Uncaught TypeError: boolean is not a function (index):297
我没有那么多行,也没有在这些文件中工作
答案 0 :(得分:1)
请尝试将您的Javascript功能重命名为其他内容,名称checked()
似乎无效。