在同一页面上调用ajax响应

时间:2017-06-02 04:44:59

标签: php jquery ajax

我有两个页面gallery.php和post-result.php ..我在div(模态内容)中得到我的ajax响应,它在同一页面上的gallery.php上我想存储div值在php变量中。

<div class="modal-content"> </div>

我的ajax代码是:

jQuery(document).ready(function(){
jQuery(".varr").click(function(){
var dataId = jQuery(this).attr('data-id');
jQuery.ajax({url:"post-result.php?dataId="+dataId,cache:false,
 success:function(result){
jQuery(".modal-content").html(result);}

});


});  });

2 个答案:

答案 0 :(得分:1)

更改

jQuery(".modal-content").html(result);

jQuery("#modal-content").html(result);

答案 1 :(得分:0)

你不能在ajax调用中设置php变量中的数据