如果表单上的Ajax函数在jQuery上不起作用,可能是由于以下原因:
// 示例表单
// 错误的选择器
$('#myForm').on('submit', function(e) {
e.preventDefault();
// ...
});
// 正确的选择器
$(document).on('submit', '#myForm', function(e) {
e.preventDefault();
// ...
});
// 在document上使用事件委托
$(document).on('submit', '#myForm', function(e) {
e.preventDefault();
// ...
});
$.ajax({
url: 'https://example.com/api',
method: 'POST',
data: $('#myForm').serialize(),
success: function(response) {
console.log(response);
},
error: function(xhr, status, error) {
console.error(error);
}
});
通过以上方法可以解决表单上的Ajax函数在jQuery上不起作用的问题。如果问题仍然存在,请检查网络连接和后端服务器是否正常工作。
下一篇:表单上的单选按钮未显示出来