$(window.frames['myframe'].document.getElementById('frameid'))
此语句有时会在null
中返回Firefox
,但在其他任何浏览器中都能正常使用。可能是什么问题?
提前致谢,
答案 0 :(得分:2)
从它的外观来看,你只需要改变它应该是的选择器
$('#myframe').contents().find('#frameid').html();
JQuery处理它的发现,看看jQuery中的选择器 Selectors