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

    评论

报告相同问题?

悬赏问题

  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?