HTML5 - 如何设置setCustomValidity? [英] HTML5 - How to set setCustomValidity?

查看:290
本文介绍了HTML5 - 如何设置setCustomValidity?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何解决输入字段以设置setCustomValidity?它不起作用:

How can I address the input field to set the setCustomValidity? It does not work:

js小提琴

$('#numberinput').val("").setCustomValidity('The two email addresses must match.');


推荐答案

使用 jQuery 您可以执行以下操作:

Using jQuery you could do the following:

$('#numberinput').get(0).setCustomValidity('The two email addresses must match.');

而不是:

And not:

$('#numberinput').val("").setCustomValidity('The two email addresses must match.');

这篇关于HTML5 - 如何设置setCustomValidity?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆