dojotype dijit.form.Button在IE9和IE10

时间:2016-02-23 18:06:47

标签: html internet-explorer firefox dojo

我有一个dojotype = dijit.form.Button,它在firefox和chrome中完美运行,但在单击中无法在IE9和IE 10中运行。我必须点击两次才能使其正常工作。我的按钮代码如下:

 **<button dojoType='dijit.form.Button' id='insertButton' <?php echo $this->perm_insert ? 'enabled' : 'disabled' ; ?> onClick=clickInsert()>Insert</button>**

我已经尝试了几件事情,当我修改我的代码时,如下所示,它开始单击IE浏览器:

 **<button type='button' id='insertButton' <?php echo $this->perm_insert ? 'enabled' : 'disabled' ; ?> onClick=clickInsert()>Insert</button>**

我想知道的是,这两种类型的基本区别是什么。在我使用按钮标签的两种情况下,只有类型不同。另外,为什么dojoType不起作用? 另外,我可以使用dojo按钮修复它吗? 任何帮助将不胜感激。

0 个答案:

没有答案