我有兩個頁面gallery.php和post-result.php ..我得到我的ajax響應在div(模態內容)這是在gallery.php在同一頁我想將div值存儲在一個php變量中。在同一頁上調用ajax響應
<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);}
});
}); });
爲什麼你在回答後改變問題?你的問題的解決方案是你只需要將'jQuery(「.modal-content」).html(result);'改爲'jQuery(「#modal-content」).html(result);' – Bhavin
對不起.....這只是我的打字錯誤.....我寫了ID而不是類 – varsha
和我的問題是,如何通過使用ID而不是類的PHP變量 – varsha