我刚开始使用dojo,我知道dojo.query与jQuery中的$相同.
原文链接:https://www.f2er.com/dojo/290857.html但我还没弄清楚它的回归.它是jQuery中的专用对象吗?
我想做的事(没有运气)是:
dojo.query("output").innerHTML = data; //this doesn't work either: dojo.query("output").html(data); //tried accessing by id as well dojo.query("#output").html(data); //and tried to access a div,incase dojo has some issues with html5 elements dojo.query("#divOutput").html(data);
而我目前正在使用新的html5 elements:
<output id="output">Output goes here</output> <div id="divOutput">non-html5 output goes here</div>
我似乎无法找到一个关于如何处理dojo.query()返回的对象的好列表..
编辑:好的,我觉得道场现在只是搞砸了我.我找到了这个方法:addContent(),它适用于上面的选择器.但我不想添加内容,我想替换内容……