我正在将一些变量从mypage.php发送到ajax.php页面。在ajax.php上,我检查了一些条件并根据请求编译了一些HTML。现在,我需要将格式化的HTML返回到mypage.php并显示。我的确在我的开发工具中看到请求已发送和响应,但是返回时似乎没有呈现任何内容。我想念什么?
mypage.php
SEEK_BEG
ajax.php
<div id="myContainer"></div>
// JS
$.ajax({
type: "POST",
url : "ajax.php",
data: {
"op": "html",
"wd": wd
},
dataType : "json",
success: function(response)
$("#myContainer").append(response.images);
}
});