-2
在表單輸入上,我設置了從服務器端收到的值。表單輸入可以再次提交,但是如果用戶沒有更改輸入,即更換輸入並重新放置相同的值,則表單不應該被驗證並通知用戶,並且不能再次設置相同的值。Jquery驗證現有輸入
- 感謝
在表單輸入上,我設置了從服務器端收到的值。表單輸入可以再次提交,但是如果用戶沒有更改輸入,即更換輸入並重新放置相同的值,則表單不應該被驗證並通知用戶,並且不能再次設置相同的值。Jquery驗證現有輸入
- 感謝
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.10.0/jquery.validate.js"
type="text/javascript"></script>
<script>
$(function() {
var changeme = $('input[name=changeme]').val();
$.validator.addMethod("mustchange", function (value, element) {
if (value === changeme) {
return false;
}
else {
return true;
}
}, "you must change this value");
$('form').validate({ debug: true });
});
</script>
</head>
<body>
<form>
<div id="main">
<input name="changeme" type="text" value="My name is bob" class="mustchange" />
<br />
<input type="submit" />
</div>
</form>
</body>
</html>