我需要将以下脚本从submithandler更改为onchange事件
我有一个带有select(列表)的表单,该表单目前适用于提交按钮。并将结果加载到div中。当用户从列表框中选择并执行与显示相同的所有其他操作时,我需要提交此表单
$(document).ready(function(){
$("#viewCus").validate({
debug: false,
submitHandler: function(form) {
$.post('customers_view.php', $("#viewCus").serialize(), function(data) {
$('#mainBody').html(data);
////////This executes the JavaScript passed back by the ajax.
$("#mainBody").find("script").each(function(i) {
eval($(this).text());
});
////////*$("form#ncus")[0].reset();*/
});
}
});
});
非常感谢:)
答案 0 :(得分:0)
$('select').change(function(e)
{
// do your operation here
$(form).submit();
});