var iframeWin = window.frames['testframe'];//查找iframe
$(iframeWin).load(function () { });
_ueditor_page_break_tag_
//iframe内容加载完执行事件 $("#testframe").load(function () { //获取iframe内body的内容 var tempJu=$(document.getElementById('testframe').contentWindow.document.body).html().replace("gaimaile","123"); $(document.getElementById('testframe').contentWindow.document.body).html(tempJu); //绑定iframe内a标签的click事件 $(iframeWin.document).find('a').click(function () { alert('change'); }); });
对于iframe跨域操作,则还需要注意。