1

我想使用 将我的表单提交到特定的 url $.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();
    });
});

但是当我按下提交按钮时,我的网址中只有新的问号,我的意思是这个

提交前表单的url

http://localhost:42344/WebForm1.aspx

提交后表单的url

http://localhost:42344/WebForm1.aspx?

我做错了什么?

笔记

我可以更改密码和手机号码的值

4

1 回答 1

3

您正在使用没有回调的 $.post 那么您希望看到什么?Post 将在后台运行,因为它是一个异步 HTTP (Ajax) 请求。也许您正在寻找:

$('form').attr('action', "/yoururl").submit();

http://api.jquery.com/submit/

于 2013-10-24T12:16:43.940 回答