Dojo 1.3 发布了

jelly 2009-04-07
新版的Dojo1.3 发布了,1.3系列的目标是Internet Explorer 8 and WebKit (Chrome, Safari) 的兼容性和性能。
这次发布的1.3 修正了大量的bug并且加入了一些新的功能。
// create a div.
var n = dojo.create("div");

// create a div with content and styles
var n = dojo.create("div", { innerHTML:"hi!", style:{ height:"200px" } });
// destroy the node safely
dojo.destroy(n);

// place an anchor somewhere, before the node with id="someNodeId"
var a = dojo.create("a", { href:"http://dojotoolkit.org" }, "someNodeId", "before");

// empty the contents of a node safely:
dojo.empty("someNodeId");
dojo.query(".nodes").empty();

// place a new LI in an UL at the first position
dojo.place("<li>Newly created DOM Node</li>", "someUl", "first");

// complex creation in dojo.query. passes through dojo.place
dojo.query("#myNode").addContent("hi there!", "first");


boywell 2010-06-13
感觉dojo每次发布的间隔时间很短啊,楼主的是去年4月份的帖子,1.5都要发布了,囧。
EldonReturn 2010-07-25
ls的,1.5已经发布了。。。。
wl6179 2012-04-12
我穿越了?有人告诉我今年是2012年吗??这篇文章咋在推荐的前列呢,现在dojo都1.7版本了……
Global site tag (gtag.js) - Google Analytics