我正在尝试检查 for 循环内的复选框,代码
<div id="div_filterctrl_<?php echo $row['id'];?>"
class="jfmfs-friend gmail" onclick="javascript: togglediv(this,'filterctrl_<?php echo $row['id'];?>');"> <span class="ggl-icn"></span> <img alt="User Picture" class="pro-pic" src="<?php echo $imageurl;?>" border="0" height="40" width="50">
<div class="friend-name"> <?php echo $name;?> </div> <span style="display: none;"> <input name="allcontact[]" id="filterctrl_<?php echo $row['id'];?>" class="email_invited" value="<?php echo $row['id'];?>" type="checkbox" /> </span> </div>现在我正在使用我的 javascript 来检查复选框,我的代码是,
function selectall() { <?php foreach ($this->arrcontacts as $res) { ?> document.getElementById("filterctrl_<?php echo $res['id'];?>").checked = true; <? } ?> }
但这并不是所有的工作。任何人都可以告诉我 wat 是错的。
问问题
89 次