当前位置: 首页 > 工具软件 > dpow-blur > 使用案例 >

onFocus="this.blur()"

朱保赫
2023-12-01
<input name="result" id="result" type="text" onFocus="this.blur();" size="20" value=""> 

onfocus是聚焦的意思,当你把光标放在文本框上输入的时候,就是聚焦,但这里添加了"this.blur()",blur的作用就是去除聚焦,也就是你不能把光标放在这个文本框上,换句话说就是你不能输入文本了

整个代码构成了”不能输入任何文本的文本框“。
参考链接:https://blog.csdn.net/fgdfgasd/article/details/8812694 感谢作者分享。

 类似资料:

相关阅读

相关文章

相关问答