我遇到的问题是jQuery验证没有在IE8中触发。所有其他浏览器都运行良好。
我在这里创建了一个缩减示例:
http://www.gilkes.me.uk/jqueryvalidation/index.html
您可以看到,在IE9,Firefox等中,如果未选中任一复选框按下该按钮,则会显示工具提示验证消息。
在IE8中,未执行验证。这是为什么?
表单标记:
<form action="http://www.google.com" method="post">
<div style="margin-top: 50px; text-align: left; margin-left: 30px;">
<ul>
<li style="list-style: none;">
<input class="checkbox" data-val="true" data-val-checkboxtrue="You must tick the box indicated." data-val-required="The QuestionAccepted field is required." id="Questions_0__QuestionAccepted" name="Questions[0].QuestionAccepted" type="checkbox" value="true" /><input name="Questions[0].QuestionAccepted" type="hidden" value="false" />
<strong>Question 1.</strong>
<input id="Questions_0__QuestionText" name="Questions[0].QuestionText" type="hidden" value="That you have been a United Kingdom resident for at least 6 out of the last 12 months." />
<input id="Questions_0__ValidationMessage" name="Questions[0].ValidationMessage" type="hidden" value="Please confirm that you have read and understood " />
<span class="field-validation-valid" data-valmsg-for="Questions[0].QuestionAccepted" data-valmsg-replace="true"></span></li>
<li style="list-style: none; margin-top: 30px;">
<input class="checkbox" data-val="true" data-val-checkboxtrue="You must tick the box indicated." data-val-required="The QuestionAccepted field is required." id="Questions_1__QuestionAccepted" name="Questions[1].QuestionAccepted" type="checkbox" value="true" /><input name="Questions[1].QuestionAccepted" type="hidden" value="false" />
<strong>Question 2.</strong>
<input id="Questions_1__QuestionText" name="Questions[1].QuestionText" type="hidden" value="That you are aged 74 or under." />
<input id="Questions_1__ValidationMessage" name="Questions[1].ValidationMessage" type="hidden" value="That you are aged 74 or under." />
<span class="field-validation-valid" data-valmsg-for="Questions[1].QuestionAccepted" data-valmsg-replace="true"></span></li>
</ul>
<p style="margin-top: 30px;">
<button type="submit" id="Continue" class="button-continue">
Buy Now
</button>
</p>
</div>
</form>
我认为此脚本可能存在问题。 IE8中的某些内容无法正常工作:
<script type="text/javascript">
jQuery.validator.unobtrusive.adapters.add("checkboxtrue", function (options) {
if (options.element.tagName.toUpperCase() == "INPUT" && options.element.type.toUpperCase() == "CHECKBOX") {
options.rules["required"] = true;
if (options.message) {
options.messages["required"] = options.message;
}
}
});
</script>
答案 0 :(得分:1)
使用jQuery Validate的1.9版解决了这个问题,因为我使用的版本(1.6)与最新版本的jQuery不兼容:
jQuery Validation not working in IE7 + IE8
我实际上已经阅读了这个问题但不认为它适用于我,因为我确信我使用的是jQuery Validate版本1.9
答案 1 :(得分:0)
我没有注意到IE在提交时出现任何错误,所以我猜第一个if
语句没有返回true
。您是否尝试使用alert()
检查IE8中options.element.tagName
和options.element.type
的值?