我正在尝试通过jQuery ajax检查复选框时提交表单。最好的方法是什么?
答案 0 :(得分: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
});
}
});
您可以action
元素从form
元素获取$(this).closest('form').attr('action')
属性,而不是'submission-url.html'