我有这个问题,其中' dblclick'事件在chrome中很好,但在firefox似乎不起作用。这种情况也会发生在“点击”中。事件
$(document).on('dblclick','.NomeCategoria',function(event){
$(".NomeCategoria").each(function(){
$(this).attr('disabled','disabled');
});
$(this).removeAttr('disabled');
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" id="19" disabled="disabled" class="NomeCategoria" value="Banchetto">
&#13;
我已经四处寻找,但我找不到任何东西。
修改
感谢Pointy指出了另一个问题。 我能够通过使用&#39; readonly&#39;来解决这个问题。而不是&#39;禁用&#39;。
&#39;禁用&#39;风格不存在但对我来说这不是问题。