- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的页面上有一个表单并使用来自 http://jqueryvalidation.org 的 jQuery 验证插件如果未提供,它会在表单字段下显示错误。
我想知道如何设置这些错误的样式?我基本上希望错误显示在实际字段内部,并且文本是某种颜色。我该怎么做?
这是我的网页 http://geofilterme.com/makemeone/
<form id="form" class="topBefore" method="post" action="thankyou.php">
<input id="name" type="text" name="sender" placeholder="Name" required="">
<input id="email" type="email" name="senderEmail" placeholder="E-mail" required="">
<input id="snapchat" type="text" name="snapchat" placeholder="Snapchat username">
<input id="reach" type="text" name="reach" placeholder="Estimated reach (number of people)" required="">
<textarea id="message" type="text" name="message" placeholder="Describe what you want on the geofilter, and what it’s for:" required=""></textarea>
<input id="submit" type="submit" name="submit" value="SUBMIT">
</form>
最佳答案
首先,您必须搜索 javascript 验证文件,在某行代码中,它会告诉您将哪个类用于所有错误元素,并为每个使用您提供的 ID 进行验证的元素创建一个特定的 ID。
例如如果您为您的元素指定了一个 ID 为“email”,它将采用该 ID 并创建一个 label 元素来保存 ID 为“email-error”的错误。
在 jquery.validate.js 中执行此操作的代码是这样的
// Create error element
error = $( "<" + this.settings.errorElement + ">" )
.attr( "id", elementID + "-error" )
.addClass( this.settings.errorClass )
.html( message || "" );
因此在您的情况下,错误的个人 ID 和类别是:
编号:电子邮件错误、到达错误、消息错误
类:错误
或者您可以使用一些可以帮助您的工具,例如 firebug、浏览器开发工具等。
在你提问之前,请先多搜索一下你自己。
关于jquery - 如何设置我需要的表单字段的样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36536170/
我尝试通过正则表达式将文本中的单引号更改为双引号。 (单字)示例:我走了。 You gona fly to planet 'Ziqtos' => 我需要在 I'm 中保留单引号,并在 You gona
我正在构建一个 API,其中大部分将包含 JSON 和 HTML 内容。但是一些非常具体的端点只呈现 true 或 false,并且还在 POST 中接受 true 或 false。这是请求或响应的整
我是一名优秀的程序员,十分优秀!