weixin_33738555 2016-06-12 18:59 采纳率: 0%
浏览 52

Ajax / JS不走

The script is nothing back what this could be?

Here a link to the page Test Link

$(document).ready(function() { 
    // Anmeldung des Namens
    $("#startfrom").submit(function() {
        if($("#yourname").val() == "") {
            $("#response").html("Bitte gebe einen Namen an!");
        } else {
            name = $("#yourname").val();
            $("#submit").attr("disabled", "disabled");
            $("#response").html("Lade...");
            $.ajax({
                type: "POST",
                url: "chat.php"
                data: "name=" + name
                success: function(msg) {
                    $("main").html(msg);
                    $("#response").html("");
                    $("message").focus();
                }   
            });
        }   
        return false; 
    });
}); 

The code is intended to provide an issue who was entering no name.

  • 写回答

2条回答 默认 最新

  • weixin_33670786 2016-06-12 19:02
    关注

    The problem is you missed commas at the end of these lines:

    url: "chat.php"
    data: "name=" + name
    

    These both lines need , in the end. They are objects. Corrected code:

    $.ajax({
        type: "POST",
        url: "chat.php",
        data: "name=" + name,
        success: function(msg) {
            $("main").html(msg);
            $("#response").html("");
            $("message").focus();
        }   
    });
    

    The other mistake is: Change your form id: Your form id is 'startform' not 'startfrom'.


    Update

    enter image description here

    Hope this above one helps you.

    Works for me after putting the comma:

    Working

    评论

报告相同问题?