使用DojoX Layout,是否可以替换布局的内容?

时间:2008-09-25 23:42:15

标签: layout dojo

我有一个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)?

亚历

1 个答案:

答案 0 :(得分:1)

在div上添加一个id(比如id =“myPane”),然后写:

dijit.byId("myPane").setHref("path/page.html");

亚历