我需要表单上选择复选框的帮助。我想显示一个警报,因为表单复选框未选中(仅)。我的代码:
<form action="index.php?page=contact&send=ok" method="POST" id="form">
[...]
<label for="message">Checkbox:</label><input type="checkbox" id="checkbox" name="checkbox">
<input type="submit" value="Send" onclick="testcheck()" />
</form>
<script type="text/javascript">
function testcheck()
{
if (jQuery("#checkbox").prop("checked"))
alert("first button checked");
else
alert("none checked");
}
</script>