JavaScript更改所有元素的颜色,以形式有效
创建一个允许形式元素具有红色背景颜色的函数(#ffeded)焦点,一旦输入的值有效,将具有蓝色背景颜色(#EDF7FC)
Create a function allowing form elements to have a red background color (#FFEDED) when it takes focus, and once the value entered is valid will have a blue background color (#EDF7FC)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于Focus,您可以使用CSS和:Focus Pseudo类。请检查此 link 。
它看起来像:
验证,您需要根据可以验证您的要求的功能来更改样式。请检查此 link
IE
For focus you can use CSS and the :focus pseudo class. Please check this link.
It will look something like:
For validation you need to change the style depending on a function that will validate your requirements. Please check this link
i.e.