不使用 javascript 或 jquery 突出显示文本框
我们可以在不使用 javasript/jquery 或 css 的情况下突出显示我们的文本框吗?如果是,那么如何?我在jsp页面,jsp可以帮忙吗?
can we highlight our textbox without using javasript/jquery or css ?if yes then how? i am on jsp page, can jsp help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用内联 CSS 来完成此操作,而无需使用外部样式表。如果你确实必须:
You can do it with CSS inline, without using an external stylesheet. If you really must:
要更改浏览器使用的默认样式的 HTML 元素的默认样式(包括颜色),您必须通过 CSS 或 JavaScript 应用该样式。
To change the default style (including color) of an HTML element from the default style that the browser uses, you must apply the style via CSS or JavaScript.
不,如果没有 CSS,这是不可能的(如果你想使用颜色之类的东西)。不过,您可以在没有 JavaScript 的情况下完成此操作。这就是执行此操作的 CSS:
以及标记:
No, that is not possible without CSS (if you want to use things like colors). You can do it without JavaScript, though. This would be the CSS for doing it:
And the markup: