Ajax代码不能正常工作

时间:2017-12-08 10:09:56

标签: ajax

Here is the JS Fiddle

我的Ajax代码不工作我不知道如何... 我在代码下面多次使用ajax,但这次没有用 请帮帮我..

只有此代码在ajax代码

内运行
start == 1

如果验证码已删除,则ajax运行

Ajax代码

if(!validateee()) return false; 

1 个答案:

答案 0 :(得分:1)

你忘了在函数结束时返回true,这就是问题。

 return true;

这需要你写validateee函数。

请在此处查找更新:https://jsfiddle.net/qref356z/6/

您更新了validateee功能,更新下面的代码,我会在最后检查它

      function validateee() {
            var name = document.popbody.namebody.value;
            var email = document.popbody.emailbody.value;
            var number = document.popbody.numberbody.value.length;
            var msg = document.popbody.msgbody.value.length;
            alert('msg5');
            if(name.trim() == "") {
                alert("Please Fill Name");
                document.popbody.namebody.focus();
                return false;
            }
            alert('msg4');
            if(name<3) {
                alert("invalid Name");
                document.popbody.namebody.focus();
                return false;
            }
            alert('msg3');
            if(email=="") {
                alert("Enter Your Email");
                document.popbody.emailbody.focus();
                return false;
            }
            alert('msg2');
            if(number=="") {
                alert("Enter Your Number");
                document.popbody.numberbody.focus();
                return false;
            }
            alert('msg1');
            if(number<9) {
                alert("Your Mobile number at least 10 digit");
                document.popbody.numberbody.focus();
                return false;
            }
            alert('msg');
            if(msg == "") {
                alert("Enter your Message");
                document.popbody.msgbody.focus();
                return false;
            }

    return true;///you need to add here 
  }