0

我有一个 div,其中使用 DojoX 布局功能加载了一个页面:

<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)?

亚历克斯

4

1 回答 1

1

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

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

亚历克斯

于 2008-09-26T00:26:06.260 回答