简体   繁体   English

使用AJAX发送隐藏的ID输入字段

[英]Send a hidden ID input field with AJAX

With this AJAX script, I'm trying to send the content of contentText and contentID. 使用此AJAX脚本,我试图发送contentText和contentID的内容。

Just sending contentTEXT works, but I want to send the ID as well, so I can comment on the original post. 仅发送contentTEXT即可,但是我也想发送ID,因此我可以对原始帖子发表评论。

But it doesn't work! 但这不起作用!

myData looks like this when it semi works: myData可以正常工作时如下所示:

> var myData = '?content_txt='+$("#contentText").val(),
> '&content_id='+$("#contentId").val(); //build a post data structure

But i want it to be something like this, i think 但是我想我想像这样

<script type="text/javascript"> $(document).ready(function() {

    //##### send add record Ajax request to response.php #########  $("#FormSubmit").click(function (e) {           e.preventDefault();             if($("#contentText").val()==='')            {
                alert("Please enter some text!");
                return false;           }
                        $("#FormSubmit").hide(); //hide submit button           $("#LoadingImage").show(); //show loading image

            var myData = '?content_txt='+$("#contentText").val(), '&content_id='+$("#contentId").val(); //build a post data structure
            jQuery.ajax({           type: "POST", // HTTP method POST or GET            url: "response.php", //Where to make Ajax calls             contentType: "application/x-www-form-urlencoded;charset=UTF-8",             dataType:"text", // Data type, HTML, json etc.          data:myData, //Form variables           success:function(response){
                $("#responds").append(response);
                $("#contentText").val(''); //empty text field on successful
                $("#FormSubmit").show(); //show submit button
                $("#LoadingImage").hide(); //hide loading image

            },          error:function (xhr, ajaxOptions, thrownError){
                $("#FormSubmit").show(); //show submit button
                $("#LoadingImage").hide(); //hide loading image
                alert(thrownError);             }           });     });

    //##### Send delete Ajax request to response.php #########  $("body").on("click", "#responds .del_button", function(e) {         e.preventDefault();         var clickedID = this.id.split('-'); //Split ID string (Split works as PHP explode)          var DbNumberID = clickedID[1]; //and get number from array          var myData = 'recordToDelete='+ DbNumberID; //build a post data structure
                $('#item_'+DbNumberID).addClass( "sel" ); //change background of this element by adding class       $(this).hide(); //hide currently clicked delete button
                    jQuery.ajax({           type: "POST", // HTTP method POST or GET            url: "response.php", //Where to make Ajax calls             dataType:"text", // Data type, HTML, json etc.          data:myData, //Form variables           success:function(response){
                //on success, hide  element user wants to delete.
                $('#item_'+DbNumberID).fadeOut();           },          error:function (xhr, ajaxOptions, thrownError){
                //On error, we alert user
                alert(thrownError);             }           });     });

}); </script>

My form I'm trying to use 我要使用的表格

<form class="form-horizontal" accept-charset="utf-8">
<fieldset>
<legend><?php echo WORDING_ADD_A_COMMENT; ?></legend>
<!-- Textarea -->
<div class="control-group">
  <div class="controls">                     
    <textarea name="content_txt" id="contentText" cols="45" rows="5" placeholder="<?php echo WORDING_COMMENT_PLACEHOLDER; ?>"></textarea>
    <input type="hidden" name="content_id" id="contentId" value="<?php echo $_GET['topic_id']; ?>"/>
  </div>
</div>
<!-- Button -->
<div class="control-group">
  <label class="control-label" for="singlebutton"></label>
  <div class="controls">
    <button id="FormSubmit" class="btn btn-primary"><?php echo WORDING_BUTTON_COMMENT_BOX; ?></button>
    <img src="images/loading.gif" id="LoadingImage" style="display:none" />
  </div>
</div>
</fieldset>
</form>
var variable = {
 'content_txt': $("#contentText").val(),
 'content_id': $("#contentId").val() 
}; 

尝试使用

       var myData = '?content_txt='+$("#contentText").val()+'&content_id='+$("#contentId").val();

You only use ? 你只用? and & when you manually build a query string and in that case you would need to encode your values as well. &当您手动构建查询字符串时,在这种情况下,您还需要对值进行编码。

When you send the data as a parameter, the easiest solution is to generate an object. 当将数据作为参数发送时,最简单的解决方案是生成一个对象。 That will be encoded automatically by jQuery: jQuery将自动对其进行编码:

//build a post data structure
var myData = { 'content_txt': $("#contentText").val(),
               'content_id': $("#contentId").val() }; 

As you are using a form, you can also serialize the form: 使用表单时,还可以序列化表单:

var myData = $('.form-horizontal').serialize();

数据:'content_id ='+ $(“#contentId”)。val()+'&content_txt ='+ $(“#contentText”)。val(),

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

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