dongtong0796 2016-02-05 13:57
浏览 24
已采纳

使用ajax和php显示文本

I'm just trying to do a simple thing in ajax but it does not work. I just want to display a text when i click on the input button

ajax.js

jQuery(document).ready(function($) {
$('#insertForm').change(function(){
//on recupere la valeur de l'attribut value pour afficher tel ou tel resultat
var req=$('#insertForm').val();
//requête ajax, appel du fichier function.php
$.ajax({
  type: "POST",
  url: "lib/function.php",
  data: "insertForm="+req,
  dataType : "html",
  //affichage de l'erreur en cas de problème
  error: function(XMLHttpRequest, textStatus, errorThrown) {
          alert(XMLHttpRequest + '--' + textStatus + '--' + errorThrown);
      },
      //function s'il n'y a pas de probleme
  success:function(data){
    $('.coucou').empty();
    $('.coucou').prepend(data.coucou)
  }
});
});
}); 

html.php

<div class="coucou"></div>
<button type="button" class="btn btn-success btn-xs" name="insertForm" id="insertForm" style="margin-top: 5px;;">
    <span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
</button>

function.php

if(isset($_POST['insertForm'])){
    echo "coucou";
}
  • 写回答

2条回答 默认 最新

  • douqi3064 2016-02-05 14:14
    关注
    jQuery(document).ready(function($) {
        $('#insertForm').click(function(){
        //on recupere la valeur de l'attribut value pour afficher tel ou tel resultat
            var req=$('#insertForm').val();
            //requête ajax, appel du fichier function.php
            $.ajax({
              type: "POST",
              url: "lib/function.php",
              data: "insertForm="+req,
              dataType : "html",
              //affichage de l'erreur en cas de problème
              error: function(XMLHttpRequest, textStatus, errorThrown) {
                      alert(XMLHttpRequest + '--' + textStatus + '--' + errorThrown);
                  },
                  //function s'il n'y a pas de probleme
              success:function(data){
                $('.coucou').empty();
                $('.coucou').text(data);
              }
            });
        });
    }); 
    

    You need to use .click() and not .change() and also, in the success, you receive only a string not an object so you just need to write data directly (with .text())

    Copy my code because i have also add ; that you had forgotten. (It's work, I tested)

    Another point you use .val() on #insertForm but there is no value attribute in your html. So var req is an empty string

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 这个复选框什么作用?
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下