我无法在父页面中获取孩子的 ajax 结果。孩子的组件没有显示在父页面中。我的猜测是孩子的准备功能没有被触发。我不确定为什么?任何帮助将不胜感激. 示例调用:
//parent page contains this function
$(document).ready(function()
{
$('#a').click(function()
{
$.ajax({
type: "GET",
url : "child_ajax.php",
data:{},
success : function(result){
window.setTimeout(function(){
$('#result_div').html(result);
}, 100);
}
});
});
});
<div id="result_div"></div>
<div id="a">click</div>
//child_ajax.php
$(document).ready(function()
{
alert('welcome');
$.ajax({
type: "GET",
url : "child2_ajax.php",
data:{},
success : function(result){
window.setTimeout(function(){
$('#result_div_child').html(result);
}, 100);
}
});
});
<div id="result_div_child"><div>