Dojo Toolkit DOM 属性
这可能是一个非常愚蠢的问题,如果是这样,我深表歉意。我对 Web 开发领域比较陌生,刚刚接触 AJAX,特别是 Dojo Toolkit。
我的问题是——是否有 Dojo HTML 属性的完整列表(例如 dojoType 等)?使用 Dojo 时,我很难找到特定 DOM 元素可用的属性。我已经查阅了 Dojo 文档和 API,但运气不佳。任何方向将不胜感激。
This might be a really stupid question, and if so, I apologize. I am relatively new to the web development world and am just getting my feet wet with AJAX, specifically with the Dojo Toolkit.
Here's my question -- is there a comprehensive list of Dojo HTML attributes (e.g. dojoType, etc.)? I am having difficulty finding what attributes are available to specific DOM elements when using Dojo. I have scoured the Dojo documentation and API's, but not much luck. Any direction would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您对“dojoType”属性的看法是错误的。
Dojo 没有在 HTML 节点上使用的属性列表,dojoType 是一个特殊的词,用于定义哪些节点将是一个小部件。
这是有关 dojo 解析器的附加信息链接。
我希望这对你有帮助。
http://dojotoolkit.org/reference-guide/dojo/parser.html
I think you' re wrong about "dojoType" property.
Dojo doesn't have a list of attributes to use on HTML node, dojoType is a special word used to define which nodes would be a widget.
This is a link additional info about the dojo parser.
I hope this help you.
http://dojotoolkit.org/reference-guide/dojo/parser.html
要检查几乎任何您想要的对象的属性,只需在浏览器和代码中安装 firebug 即可:
console.dir( objetThatYouWantToInspectAttribuitesFor );
To inspect attributes of almost whatever object you want, just install firebug in you browser and in your code, make this:
console.dir( objetThatYouWantToInspectAttribuitesFor );