English 中文(简体)
j Query AJRP 成功
原标题:jQuery AJAX Success
  • 时间:2012-04-22 03:16:54
  •  标签:
  • jquery
  • ajax

I m, using jQuery s $.ajax function to submitting a form, which work, but the full is where I m with my problem. 我的守则是:

$("#form").submit(function () {
        $.ajax({
            type: "POST",
            url:  /login/spam ,
            data: formData,
            success: function (dataCheck) {
                if (dataCheck ==  value ) {
                     //Do stuff
                }
            }
        });
        return false;
    });

问题Im是if的功能: http://www.un.org。 我知道,这样做是因为我删除了<代码>return不实;,如期显示<> >/em>。 此外,我以前也使用了几乎相同的法典,该法典行之有效。 有些人能否向我提出一些建议?

最佳回答

如何找到答案:

Place a debug code to see what you get from the server.

$("#form").submit(function () {
        $.ajax({
            type: "POST",
            url:  /login/spam ,
            data: formData,
            success: function (dataCheck) {
                console.log(dataCheck); // <==============================
                if (dataCheck ==  value ) {
                     //Do stuff
                }
            }
        });
        return false;
    });

这种做法可能采取与你所认为的其他形式。

问题回答

如果你想要防止违约行为(在这种情况下,通常提交表格),则使用preventDefault 查询; 防止Default 即使在返回假声明的文字上存在问题的情况下也会工作。

下面的法典应当作罚款。

$("#form").submit(function(e) {
   e.preventDefault();
    $.ajax({
        type: "POST",
        url:  /login/spam ,
        data: formData,
        success: function (dataCheck) {
            if (dataCheck ==  value ) {
                 //Do stuff
            }
        }
    });    
});

如Gdoron所述,使用青.。 注意了解变量的价值。 采用网表/单表,将有助于你了解你从服务器网页上得到的反应。

它奇怪。 我的建议是,你可以使用火力或其它东西(例如,在神殿开发工具)的火力,以了解幼童的反应。

我认为,错误的Xhr对策(例如,749afa42e6621f10bae17ee00cb1f4delett with html tag)或某些空间可能产生错误的结果。

请你:

我知道,尽管我今天也讨论过这个问题,但问题在于,正确的扼杀已经恢复成功,但出于某种原因,它具有新意。 然而,在我在线提出新路线时,当地情况并非如此(在你的案例数据Ceck中)。 我利用子公司的职能,最终将新线从新线上删除,并从那里打上了罚款。

如果(答复) 采用这一方法

I guess that dataCheck is a String. 然后使用<代码> 当地竞争主管机构()

if (dataCheck.localeCompare( value ) == 0) {
    //Do stuff
}
  • Returns -1 if str1 is sorted before str2
  • Returns 0 if the two strings are equal
  • Returns 1 if str1 is sorted after str2




相关问题
ajax login using httpRequest?

I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...

Virtual Tour using sketch up, ajax, flash technologies

I want to know if there are existing technology that make your 3d models in sketch into virtual tours, using either Ajax or Flash for web presentation. If there s none, which will be a good approach ...

How can i update div continuously

I have asp.net application where i have a div which showing the value from other site. The value of that site is changing continuously. I want that my div will automatically update in some interval ...