Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用单击事件禁用 dojo 按钮,但是我的 dojo 按钮禁用仅颜色按钮现在也可以正常工作,如何限制呢?在 j 查询中,当我们使用禁用属性时,点击通风口也会更改为禁用模式。在道场怎么样?
我的代码:
dom.byId("somID").setAttribute("disabled", "disabled");
您需要使用小部件而不是 dom 节点。
require(['dijit/registry'], function(registry) { registry.byId('somId').set('disabled', true); });