使用 domconstruct = http://dojotoolkit.org/reference-guide/1.9/dojo/dom-construct.html#dojo-dom-construct-place
place() 的第二个参数是
refNode String|DomNode 应该放置节点的 DOM 节点。如果是字符串,则假定为节点的ID
它说我可以使用 DOM 节点,所以我尝试使用 jquery 获取 domnode -> 错误还尝试使用 Dojo 的 query() -> 相同的错误
错误:
Uncaught TypeError: Object [object Object] has no method 'appendChild'
我的代码 domConstruct.place(errorBoxHtml, $("#"+currentView.id+" .content") , "first");