当通过 jQuery ajax 检查复选框时,我正在尝试提交表单。最好的方法是什么?
问问题
841 次
1 回答
1
这不是用户友好的,但你可以这样做
$('#checkbox').change(function() {
// Is checkbox checked?
if ($(this).is(':checked')) {
// Send parent form data via post
$.post('submission-url.html', $(this).closest('form').serialize(), function(data) {
// process response
});
}
});
您可以通过而不是“submission-url.html”从元素中获取action
属性form
$(this).closest('form').attr('action')
于 2013-02-26T18:35:55.603 回答