我有一个div,其中一个页面加载了DojoX Layout功能:
<div dojoType="dojox.layout.ContentPane"
adjustPaths="true"
renderStyles="true"
executeScripts="true"
href="my/page/containing/scripts/and/styles/in/a/sub/folder.html">
Initial content, will be replace by href.
paths in folder.html will be adjusted to match this page
</div>
我是否可以使用API来稍后将此div的内容替换为来自其他页面的其他内容(其他URI)?
亚历
答案 0 :(得分:1)
在div上添加一个id(比如id =“myPane”),然后写:
dijit.byId("myPane").setHref("path/page.html");
亚历