doudou7361 2015-09-17 15:42
浏览 18
已采纳

动态jquery验证无法正常工作

hi i am trying to dynamically validate my registration form, so that check are being made, when the user enters values into input fields using jquery and php. i am returning the values using a json array, the first input box is validated but the second one does not get validated and im not sure why? any help would be mostly appreciated.

  • 写回答

1条回答 默认 最新

  • duananyantan04633 2015-09-17 15:59
    关注

    This problem is occurring because your validate() function takes two parameters: fname and name, but you are always only sending the first parameter and not the other one.

    To fix it, in your fname events do this:

    validate($('#fname').val() , "");
              ---------------    ---
                     |            |
                   fname        lname
    

    and in your lname events do this:

    validate("" , $('#lname').val());
             ---  ----------------
              |            |
            fname        lname 
    

    and in your PHP make sure you set it so that it reads no "blanks":

    if( isset($_POST['lname']) && $_POST['lname'] !== "")
    
    if( isset($_POST['fname']) && $_POST['fname'] !== "")
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥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里的文字?