如何使用onchang複選框提交此功能或按下按鈕?如何使用onchang複選框或按下按鈕提交此功能?
我想提交表單,並調用函數時onchang複選框或按下按鈕,
我怎樣才能做到這一點?
<form method="post" id="f1">
<input type="checkbox" id="one" name="one" value="1">1<br>
<input type="checkbox" id="two" name="two" value="2">2<br>
<input type="submit" id="submit" name="submit" value="OK"/>
</form>
<script>
$(document).ready(function(){
$('#submit').click(function() {
$('#overlay').show();
$.ajax({
url: 'test.php',
type: 'POST',
data: $('#f1').serialize(),
success: function(data){
$('#overlay').hide();
$('#result').html(data);
}
});
return false;
});
})
</script>
添加另一個事件偵聽器來偵聽複選框'change'事件? – 2014-09-01 14:37:20
請澄清你的問題。檢查並取消選中什麼? – isherwood 2014-09-01 14:38:59
謝謝你isherwood我編輯我的問題的成功,檢查並取消選中它的意思onchange ^^ – 2014-09-01 14:41:37