我想知道是否可以获取ajax响应并将其作为iframe内容显示在动态iframe中。?
这是代码的一部分:
$('.ifrm').html('response')
<iframe class='ifrm' src="abcd.php"></iframe>
It would be a great help if anyone tells me how to do it.. Thanks!
答案 0 :(得分:1)
$('iframe#myFrame').load(function(){
$(this).contents().find('div.myClass').append("Hallo, Welt!");
});
答案 1 :(得分:0)
您可以在单击按钮时使用正确的URL来调用它:
$(docIFrameId).empty().attr('src', <urlHere>, function () {
// ...
});
注意:用适当的网址替换<urlHere>
部分