我有这段 HTML:
<form action="http://shoutzor.nl/login" method="POST" id="loginform" class="form-horizontal">
<fieldset>
<legend>Have an account? Login!</legend>
<div class="control-group">
<label class="control-label" for="username">Username</label>
<div class="controls">
<input type="text" id="username" name="username" />
</div>
</div>
<div class="control-group">
<label class="control-label" for="password">Password</label>
<div class="controls">
<input type="text" id="password" name="password" />
</div>
</div>
<div class="control-group">
<div class="controls">
<input type="submit" class="btn" value="Login" />
</div>
</div>
</fieldset>
</form>
<form action="http://shoutzor.nl/login" method="POST" id="registerform"
class="form-horizontal">
<fieldset>
<legend>Create an account</legend>
<div class="control-group">
<label class="control-label" for="username">Username</label>
<div class="controls">
<input type="text" id="username" />
</div>
</div>
<div class="control-group">
<label class="control-label" for="email">Email</label>
<div class="controls">
<input type="text" id="email" />
</div>
</div>
<div class="control-group">
<div class="controls">
<input type="submit" class="btn" value="Register" />
</div>
</div>
</fieldset>
</form>
我有一点 JavaScript:
$("form").submit(function (e) {
e.preventDefault();
$("body").toggleLoadMaskOverlay();
if ($(this).is("#registerform")) {
//Registreren
$.post("http://shoutzor.nl/register ", {
username: $("#registerform input[name=username]").val(),
email: $("#registerform input[name=email]").val()
}, function (result) {
$("body").toggleLoadMaskOverlay();
}, "json");
} else {
$.post("http://shoutzor.nl/login", {
test: "test",
username: $("#loginform input[name=username]").val(),
password: $("#loginform input[name=password]").val()
}, function (result) {
$("body").toggleLoadMaskOverlay();
}, "html");
}
});
在服务器端,我有自己的 PHP API,但这并不重要,因为奇怪的是,即使在 index.php 文件的顶部也$_SERVER['REQUEST_METHOD']
返回“GET”并且var_dump($_REQUEST)
根本不返回任何数据。
我之前在我的任何其他网站(使用我开发的相同 PHP CMS)上都没有遇到过这个问题,所以我现在假设我的 JavaScript 代码做错了,但我找不到问题。