gpt4 book ai didi

jquery发布问题

转载 作者:行者123 更新时间:2023-12-01 03:29:46 25 4
gpt4 key购买 nike

//post data
function SubmitForm(method)
{
var login = document.form.login.value;
var password = document.form.password.value;
$.post("../content/backend.php", { login: login,password: password,method: method});
}

我正在尝试使用上述调用来发布数据。在 Firefox 中,Firebug 会出现错误,但没有给我时间来评估,我唯一能看到的是与以下代码相关的 jquery 错误点。

// Send the data
try {
xhr.send(s.data);
} catch(e) {
jQuery.handleError(s, xhr, null, e);
}

有人知道为什么会发生这种情况吗?整个页面发布在下面

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="yes" name="apple-mobile-web-app-capable" />
<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type" />
<link href="../pics/homescreen.png" rel="apple-touch-icon" />
<meta content="minimum-scale=1.0, width=device-width, maximum-scale=0.6667, user-scalable=no" name="viewport" />
<link href="../css/style.css" rel="stylesheet" type="text/css" />
<script src="../javascript/functions.js" type="text/javascript"></script>
<script type="text/javascript" src="../includes/jquery.js"></script>

<script type="text/javascript">
function SubmitForm(method)
{
var login = document.form.login.value;
var password = document.form.password.value;
$.post("../content/backend.php", { login: login,password: password,method: method});
}
</script>
<title>Login</title>
</head>
<body>
<div id="topbar">
<div id="leftnav">
<a href="../index.php"><img alt="home" src="../images/home.png" /></a> </div>
</div>
<div id="title">Login</div>
</div>
<div id="content">
<span class="graytitle">Login</span>
<ul class="pageitem">
<form name="form" method="post" action="#">
<li class="form"><input placeholder="Username" type="text" id="login"/></li>
<li class="form"><input placeholder="Password" type="password" id="password"/></li>
<li class="form"><button onClick="SubmitForm('login')" name="button">Login</button></li>
</ul>
</form>
</div>
<div id="footer"></div>
</body>
</html>

最佳答案

您的提交函数应返回 false 以停止事件传播。

function SubmitForm(method)
{
var login = document.form.login.value;
var password = document.form.password.value;
try {
$.post("../content/backend.php", { login: login,password: password,method: method});
} catch(e) {
alert(e);
}
return false
}

停止调用默认的偶数处理程序。

还将调用包装在 try/catch 中以使调试更容易。由于没有调用的脚本,我们很难调试代码。

关于jquery发布问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/842178/

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