删除只读属性的尖线

发布于 2025-01-06 08:37:42 字数 188 浏览 1 评论 0原文

是否可以从具有只读属性的输入元素中删除尖线?禁用时,行为有所不同,因为禁用元素无法接收焦点事件,但只读元素可以。 那么是否可以从只读输入中删除尖线?

检查小提琴: http://jsfiddle.net/DCjYA/364/

Is possible to remove pointed line from an input element with attribute readonly? On disable the behavior is different because disabled elements cannot receive focus events but readonly can.
So is possible to remove pointed line from readonly inputs?

check fiddle:
http://jsfiddle.net/DCjYA/364/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋叶绚丽 2025-01-13 08:37:42

你可以这样做..

Last name: <input type="text" name="lname" value="readonly" readonly onfocus="this.blur();"/>

编辑:

你也可以使用 jquery 来做到这一点,所以你不必在每个输入上添加代码

Last name: <input type="text" name="lname" value="readonly" readonly class="readonly"/>

<script>
$(".readonly").focus(function () {
   $(this).blur();
 });
</script>

you can do it this way..

Last name: <input type="text" name="lname" value="readonly" readonly onfocus="this.blur();"/>

Edit:

you can also do it using jquery, so you dont have to add the code on every input

Last name: <input type="text" name="lname" value="readonly" readonly class="readonly"/>

<script>
$(".readonly").focus(function () {
   $(this).blur();
 });
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文