当我单击图像时,我制作了此代码以选中一个复选框,但这不起作用。
$linkToInterview = 'checkById(document.myform.checkbox,$interview_id)';
?>
<a href="javascript:void(0);" onclick='<?=$linkToInterview?>'><img src="<?=siteConfig::img_dir?>new_photos/video.gif" style="border:0px"/></a>
和Javascript函数:
<script type="text/javascript">
function checkByID(chk,id) {
chk[id].checked = true ;
}
</script>
和复选框代码:
<td><input type="checkbox" name="checkbox" value="<?php echo $fet['id']; ?>"