本文介绍了输入复选框的描述单击没有在Mozilla和Internet Explorer 10上工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨专家!



我有一个复选框,在点击描述点击时选中并取消选中。



我的代码如下所示

Hi Expert!

I have one checkbox that checked and unchecked on description click.

My code as par below

<input type="checkbox" id="chkId" />
<label for="chkId">Check</label>



当用户点击时,除了Mozilla(所有版本)之外,它适用于所有浏览器继续复选框的描述(Mozilla),在Internet Explorer 10上,它运行缓慢,当用户点击并取消选中


时。为什么?这非常烦躁。



请给我解决方案(复选框)在所有浏览器上正常工作。



请帮帮我!



如有任何建议,我们将不胜感激。



提前致谢!


It work fine with all browsers besides Mozilla (all version), when user click continue on checkbox''s description (Mozilla) and on Internet Explorer 10, it work slowly, when user

clicked and unchecked. Why? This is very irritable.

Please give me solution that (checkbox) work properly on all browsers.

Please help me!

Any suggestion will be appreciated.

Thanks in advance!

推荐答案

<input type="checkbox" id="chkId1" accesskey="A">This is option <u>A</u></input><br/>
<input type="checkbox" id="chkId2" accesskey="B">This is option <u>B</u></input>





这样,您将根据带下划线的字符为每个控件创建加速键。请记住,在Mozilla中,可以通过Alt + Shift +键访问它们,但是在其他浏览器上通过Alt +键访问它们。



对于慢速操作,这不是真正。你可能会把你的表现搞砸到其他地方;那些控件本身工作得很好,速度非常快。



-SA


这篇关于输入复选框的描述单击没有在Mozilla和Internet Explorer 10上工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 09:50