gpt4 book ai didi

javascript - 无法使用 Firefox 进行 ajax 发帖

转载 作者:行者123 更新时间:2023-11-28 15:28:58 26 4
gpt4 key购买 nike

我想发布一个使用 jQuery ajax 的文章,无需重新加载页面,它在 Chrome 中工作正常,但在 Firefox 6.0 中不起作用。下面是我的代码

 <html>
<head>
<script type="text/javascript">
function save()
{
$('#myForm').submit(function(event){
event.preventDefault();
$.ajax({
type:'POST',
url:'save.php',
data:$('#myForm').serialize(),
success:function(data)
{
alert('form submitted');
},
error:function()
{
alert('unable to submit');
}
});
});
}
</script>
</head>
<body>
<form id="myForm" action=''>
<input type="text" name="firstName">
<input type="text" name="lastName">
<input type="submit" id="submitForm" onclick="save(myForm);">
</form>
<body>
</html>

任何帮助将不胜感激。

最佳答案

您的 FF 缓存中必须有 jQuery 的缓存版本,因为我没有看到您在页面的任何位置包含 jQuery。

在头部添加上面的其他脚本:

<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>

关于javascript - 无法使用 Firefox 进行 ajax 发帖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28122700/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com