我想使用$.post
将表单提交到特定网址,我完全遵循教程告诉我的内容。这是我的代码
$(document).ready(function () {
$("#fLogin").on('submit', function (e) {
var errorCount = 0;
$('span.errorMessage').text('');
$('input [type=text]').each(function () {
var $this = $(this);
if ($this.val() === '') {
var error = 'Please fill ' + $this.prev('label').text(); // take the input field from label
$this.next('span').text(error);
errorCount = errorCount + 1;
}
});
var select = $('#sUserType').filter(function () {
if (this.selectedIndex == 0)
errorCount = errorCount +1;
return this.selectedIndex == 0;
}).next('span').text('Please select user type');
if (errorCount == 0) {
var mobileNumber = $("#iMobileNumber").val();
var password = $("#iPassword").val();
$.post("MY URL");
//$.ajax("ajax/test.html", function (data) {
// alert("d");
//});
}
else
e.preventDefault();
});
});
但是当我按下提交按钮时,我在网址中只有新的问号,我的意思是
http://localhost:42344/WebForm1.aspx
http://localhost:42344/WebForm1.aspx?
我在做什么错了pelase?
我可以改变密码和手机号码的价值
答案 0 :(得分:3)
您使用$ .post而没有回调,那么您期望看到什么? Post将在后台运行,因为它是异步HTTP(Ajax)请求。也许您正在寻找:
$('form').attr('action', "/yoururl").submit();