本文介绍了如何使残疾人/只读功能的单选按钮和复选框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道我们无法只读取单选按钮和复选框。我试图禁用单选按钮和复选框,但在IE中它不是清晰可见。
I know we can not make readonly to radio button and checkbox. I tried disabled to radio button and checkbox but in IE it is not clearly visible.
是否有其他方法可以像使用jQuery,CSS,JavaScript一样执行disable / readonly?
Is any alternative to do same like disable/readonly using jQuery, CSS, JavaScript?
推荐答案
You can use the following code to avoid clicks on elements you don't want user to change
$(':radio,:checkbox')。click(function(){
return false;
});
$(':radio,:checkbox').click(function(){ return false;});
您可以使用适当的选择器限制点击次数。
You can use proper selector to limit the clicks.
这篇关于如何使残疾人/只读功能的单选按钮和复选框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!