我有一个提交按钮,点击正常提交表单应该有效。 我有另一个元素,点击我需要提交表单的复选框。 可能吗? 如果有,怎么样?
答案 0 :(得分:0)
您可以执行以下操作
<input type='checkbox' onclick='handleClick(this);'>Checkbox
function handleClick(cb) {
if(cb.checked)
{
document.getElementById("myForm").submit();
}
}
希望这会对你有所帮助。
答案 1 :(得分:0)
<强>的Javascript 强>:
var checkbox = document.yourForm.yourCheckbox; // getting yourCheckbox
checkbox.onclick = function() { // a function that is executed when the checkbox is clicked
if (checkbox.checked == true) { // if checkbox is checked:
document.yourForm.submit(); // submit the form
}
};
<强> HTML 强>:
<form name="yourForm">
<input type='checkbox' name='yourCheckbox'>
</form>