作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以从具有只读属性的输入元素中删除尖线?在禁用时行为是不同的,因为禁用的元素不能接收焦点事件但只读可以。 那么是否可以从只读输入中删除尖线?
检查 fiddle : http://jsfiddle.net/DCjYA/364/
最佳答案
你可以这样做..
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>
关于html - 删除只读属性的尖线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9327594/
一直在思考什么是获得带有尖 Angular 的背景图像的最佳方式。我尝试了一些 css,例如 border-radius 和 clip-path 但没有成功。我想 clip-path 是最接近的可能答
我是一名优秀的程序员,十分优秀!