22
Tôi có một biểu mẫu mà người dùng có thể cập nhật tên và họ của mình. Tôi sử dụng xác nhận hợp lệ jQuery để xác thực biểu mẫu. Làm cách nào tôi có thể xác thực nếu người dùng đặt không gian?Xác thực tùy chỉnh xác thực jQuery thêm không có xác thực không gian
đây là những gì tôi có:
<script>
$(document).ready(function(){
$('#submit').click(function() {
var valid = $("#myform").valid();
if(!valid) {
return false;
}
$.ajax({
type: "POST",
url: 'save',
data: $('#myform').serialize(),
dataType: 'json',
cache: false,
success: function(result) {
// redirect to another page
}
});
});
});
</script>
</head>
<body>
<form id="myform" method="post" action="">
<fieldset>
<legend>update name</legend>
<p>
<label for="fname">Name</label>
<em>*</em><input id="fname" name="fname" size="25" class="required" minlength="2" />
</p>
<p>
<label for="lname">Last Name</label>
<em>*</em><input id="lname" name="lname" size="25" class="required" minlength="2" />
</p>
<p>
<input id="submit" type="submit" value="Submit"/>
</p>
</fieldset>
</form>
nhờ