发布于 2016-10-04 23:54:38 | 691 次阅读 | 评论: 1 | 来源: 网友投递
jQuery javascript框架
jQuery是一个兼容多浏览器的javascript框架,核心理念是write less,do more(写得更少,做得更多)。jQuery在2006年1月由美国人John Resig在纽约的barcamp发布,吸引了来自世界各地的众多JavaScript高手加入,由Dave Methvin率领团队进行开发。
jquery代码:
$(function(){
$("#test").load("${contextPath}/notepad/toCreate.do");
}
这种方式没办法实现,换个思路:
<div id="test">
<iframe name="testLoad" style="width:100%"></iframe>
</div>
function loadPage(){
window.open("${contextPath}/notepad/toCreate.do",'testLoad','');// testLoad为iframe的name属性
}
<input type="button" value="加载" onclick="loadPage()" />