我想使用 title 属性来存储我的验证消息。我目前正在使用番茄酱作为我们的验证库。我们尝试过其他插件,但喜欢番茄酱的功能。我想触发错误,并显示标题属性,直到错误得到纠正。有没有办法让元素上的标题属性保持打开状态,即使用户离开元素,直到验证被纠正。
问问题
3032 次
2 回答
0
不,您无法控制浏览器的工具提示处理。您将需要使用其他方法来显示错误。
于 2013-09-09T21:01:41.070 回答
0
我不知道为什么工具提示在这里不起作用,但我已经测试过它工作正常。
$("#submit").click(function(){
if($("#name").val().length < 3) {
$("#name").tooltip('show');
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<input type="text" title="Your name" id="name">
<button type="button" id="submit">Submit</button>
于 2017-10-21T14:14:12.167 回答