我们可以提交两次jsp表格吗?

时间:2016-01-31 12:51:03

标签: javascript html css forms jsp

我有一个提交按钮,点击正常提交表单应该有效。 我有另一个元素,点击我需要提交表单的复选框。 可能吗? 如果有,怎么样?

2 个答案:

答案 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>

http://www.w3schools.com/jsref/met_form_submit.asp