解决用jquery load加载页面到div时,不执行页面的js
jquery代码:
$(function(){
$("#test").load("${contextPath}/notepad/toCreate.do");
}
加载 ${contextPath}/notepad/toCreate.do 页面到id为test的div中,加载完成之后,create页面中的js不会执行
这种方式没办法实现,换个思路:
<div id="test">
<iframe name="testLoad" style="width:100%"></iframe>
</div>
js事件:
function loadPage(){
window.open("${contextPath}/notepad/toCreate.do",'testLoad','');// testLoad为iframe的name属性
}
按钮:
<input type="button" value="加载" onclick="loadPage()" />
点击按钮时,加载页面到iframe中,里面的js是可以使用的,感觉不太好,就像是刷新页面了一样......
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步