gpt4 book ai didi

javascript - 错误放置默认样式

转载 作者:太空宇宙 更新时间:2023-11-04 12:17:19 25 4
gpt4 key购买 nike

我用数据输入表单创建了一些页面 jsp。一些页面已经定义了验证的功能:

<script>
$(document).ready(function() {
$("#newPassword").validate({
rules : {
password : "required",
passwordConfirm : {
equalTo : "#password"
}
},
messages : {
passwordConfirm : "<spring:message code='change.label.error.confirmPassword'/>"
}
});
});
</script>

在这种情况下,错误以这种方式显示:

enter image description here

我宁愿看到它是由默认浏览器完成的:

enter image description here

我该怎么做?

最佳答案

"In this case the error is displayed in this way:"

enter image description here

这就是 jQuery Validate 插件创建错误消息的方式。


".... as is done by the default browser:"

enter image description here

这就是浏览器使用 HTML5 validation attributes to create the error messages 的方式.


"I would rather see it as is done by the default browser: How can I do it?"

删除 jQuery Validate 插件以允许浏览器默认 (HTML5) 接管。否则,您不能在使用 jQuery Validate 插件时让浏览器使用 HTML5 验证,因为该插件会动态禁用任何 HTML5 验证并接管。

关于javascript - 错误放置默认样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28603967/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com