真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

jQuery中Validate插件ajax方式驗證輸入值的示例分析

小編給大家分享一下jQuery中Validate插件ajax方式驗證輸入值的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

創(chuàng)新互聯(lián)主營襄汾網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件開發(fā)公司,襄汾h5微信小程序定制開發(fā)搭建,襄汾網(wǎng)站營銷推廣歡迎襄汾等地區(qū)企業(yè)咨詢

使用jQuery Validate插件可以使用remote校驗規(guī)則完成驗證。

示例:

一.基本用法

1.需要驗證的表單

 
  

2.js

使用remote校驗規(guī)則,最簡單粗暴的寫法是remote: url,此時請求的url后面自動拼接當前驗證的值,例如下面的寫法,請求的url為:xxx/checkUsername.do?username=test

// 導(dǎo)入jquery、validte庫略
$(function() {
	$.validator.setDefaults({
		submitHandler: function(form) {
			// 驗證通過處理
			...
		}
	});
				
	$("#registForm").validate({
		rules: {
			username: {
				required: true,
				remote: "checkUsername.do"
			},			
		},
		messages: {
			username: {
				required: "用戶名不能為空",
				remote: "用戶名已經(jīng)存在"
			}
		}
	});
});

3.后臺(Spring MVC測試)

后臺響應(yīng)只能輸出true或false,不能有其他數(shù)據(jù),true:驗證通過,false:驗證失??;設(shè)置返回類型為boolean或String都可以

(1).返回boolean

@RequestMapping("/checkUsername")
public @ResponseBody boolean checkUsername(@RequestParam String username) {
	// 測試
	return !"test".equals(username);
}

(2).返回String

@RequestMapping("/checkUsername")
public @ResponseBody String checkUsername(@RequestParam String username) {
	// 測試
	return !"test".equals(username) ? "true" : "false";
}

二.其他用法

上面的用法不能滿足實際的需求,有時候會有需要提交其他參數(shù)、參數(shù)名和屬性名不一致或請求方式為POST的情況,寫法如下:

1.js

使用data選項,也就是jQuery的$.ajax({...})的寫法;

提交的數(shù)據(jù)需要通過函數(shù)返回值的方式,直接寫值有問題;

默認會提交當前驗證的值,也就是下例中的 username: xxx會被默認作為參數(shù)提交

....
username: {
	required: true,
	remote: {
		url: "checkUsername.do",
		type: "post",    //數(shù)據(jù)發(fā)送方式
		dataType: "json",   //接受數(shù)據(jù)格式 
		data: {      //要傳遞的數(shù)據(jù)
			username: function() {
				return $("#username").val();
			},
			extra: function() {
				return "額外信息";
			}
		 }
	}
}

2.后臺

限制了必須為POST方式請求

@RequestMapping(value = "/checkUsername", method = RequestMethod.POST)
public @ResponseBody boolean checkUsername(User user, @RequestParam String extra) {
	// 測試
	System.out.println(extra);
	return !"test".equals(user.getUsername());
}

以上是“jQuery中Validate插件ajax方式驗證輸入值的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


當前標題:jQuery中Validate插件ajax方式驗證輸入值的示例分析
轉(zhuǎn)載注明:http://weahome.cn/article/jijscg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部