简体   繁体   English

为什么我的Ajax无法在输入表单中获取当前键入的字符串?

[英]why is my ajax unable to get the currently typed string in the input form?

I have a simple form, then I placed some data from the table to each of the input forms value attribute. 我有一个简单的表单,然后将表中的一些数据放置到每个输入表单的value属性中。 now my problem is, whenever i typed something new to the input form, to update the data, it's unable to pick up the currently typed string, am not sure how to solve this, because I think it is picking up the value echoed out instead of the currently typed string when on this update page, 现在我的问题是,每当我在输入表单中键入新内容以更新数据时,它就无法获取当前键入的字符串,不确定如何解决此问题,因为我认为它正在获取回显的值在此更新页面上当前键入的字符串的

here's my front-end 这是我的前端

    <fieldset id="personaldetails">
    <legend>Personal Details</legend>
    Resume Title: <input type="text" name="resumetitle" id="resumetitle" value="<?php echo $v['ResumeTitle']; ?>" size="50" maxlength="50" /><br />
    Name: <input type="text" name="cvname" id="cvname" size="30" maxlength="30" value="<?php echo $v['Name']; ?>" /><br />
    DOB: <input type="text" id="datepicker" name="dob" value="<?php $date = new DateTime($v['DOB']); echo $date->format('m/d/Y'); ?>" /><br />
    Gender:  <input type="radio" name="gender" id="gender-male" value="1" <?php if($v['Gender'] == 1){ echo "checked"; } ?>/> <b>Male</b> |
     <input type="radio" name="gender" id="gender-female" value="0" <?php if($v['Gender'] == 0){ echo "checked"; } ?>/> <b>Female</b><br /><br />
    <input type="hidden" name="cvid" id="cvid" value="<?php echo $v['ResumeID']; ?>" />
    <button name="pdetails" id="pdetails">Update</button>
    </fieldset><br /><br />

//here's my js //这是我的js

$(document).ready(function(){
 var resumetitle = $('#resumetitle').val();
 var cvid = $('input[type="hidden"]').val();
 var name = $('#cvname').val();
 var dob = $('#datepicker').val();
 var gender = $('input[name="gender"]:checked').val();


$('button#pdetails').click(function(){
   $.ajax({
      type: "POST",
      url: "classes/ajax.resumeupdate.php",
      data: "resumeid="+cvid+"&resumetitle="+resumetitle+"&name="+name+"&dob="+dob+"&gender="+gender,
      success: function(){
        //window.location = "resumeview.php?cvid="+cvid;
      },
   });
});


});

//here's my php code //这是我的PHP代码

require 'class.resume.php';

$db = new Resume();

if(isset($_POST['resumetitle']) || isset($_POST['name']) || isset($_POST['dob']) ||
   isset($_POST['gender']) || isset($_POST['cvid'])){
    $result =  $db->updatepdetails($_POST['resumetitle'],$_POST['name'],$_POST['dob'],$_POST['gender'],$_POST['cvid']);
    if($result){
      echo "success!";
    } else {
      echo "failed! ".$db->error;
    }
   }

Your javascript is resolving the form values just once (on page load), so if you enter something after the page has loaded, the variables don't change. 您的javascript仅解析一次表单值(页面加载时),因此,如果在页面加载后输入内容,则变量不会更改。

You can simply calculate the values inside the Ajax callback instead. 您可以简单地在Ajax回调中计算值。 But what you really should do is use jQuery's $.serialize() function, which creates a standard a=1&b=2&c=3 querystring including the (properly escaped) form data: 但是您真正应该做的是使用jQuery的$.serialize()函数,该函数创建一个标准的a=1&b=2&c=3查询字符串,其中包括(正确转义的)表单数据:

$(function(){
  $('button#pdetails').click(function(){
    $.ajax({
      type: "POST",
      url: "classes/ajax.resumeupdate.php",
      data: $('form').serialize(),
      success: function(){
        //window.location = "resumeview.php?cvid="+cvid;
      }
    });
  });
});

Also note that you had a trailing comma after the success function - this will fail in IE so I've changed that as well. 还要注意,成功功能后面有一个逗号结尾-这将在IE中失败,因此我也进行了更改。

You are only reading the values on document ready, move that code into the click event: 您仅在阅读准备好文档中的值,然后将该代码移入click事件:

$(document).ready(function(){
   $('button#pdetails').click(function(){
     var resumetitle = $('#resumetitle').val();
     var cvid = $('input[type="hidden"]').val();
     var name = $('#cvname').val();
     var dob = $('#datepicker').val();
     var gender = $('input[name="gender"]:checked').val();
     $.ajax({
       type: "POST",
       url: "classes/ajax.resumeupdate.php",
       data: "resumeid="+cvid+"&resumetitle="+resumetitle+"&name="+name+"&dob="+dob+"&gender="+gender,
       success: function(){
           //window.location = "resumeview.php?cvid="+cvid;
       },
     });
   });
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM