⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 us.js

📁 js基本操作
💻 JS
字号:
/*	Copyright (c) 2004-2006, The Dojo Foundation	All Rights Reserved.	Licensed under the Academic Free License version 2.1 or above OR the	modified BSD license. For more information on Dojo licensing, see:		http://dojotoolkit.org/community/licensing.shtml*/dojo.provide("dojo.validate.us");dojo.require("dojo.validate.common");dojo.validate.us.isCurrency = function(/*String*/value, /*Object?*/flags){	// summary: Validates U.S. currency	// value: the representation to check	// flags: flags in validate.isCurrency can be applied.	return dojo.validate.isCurrency(value, flags); // Boolean}dojo.validate.us.isState = function(/*String*/value, /*Object?*/flags){	// summary: Validates US state and territory abbreviations.	//	// value: A two character string	// flags: An object	//    flags.allowTerritories  Allow Guam, Puerto Rico, etc.  Default is true.	//    flags.allowMilitary  Allow military 'states', e.g. Armed Forces Europe (AE).  Default is true.	var re = new RegExp("^" + dojo.regexp.us.state(flags) + "$", "i");	return re.test(value); // Boolean}dojo.validate.us.isPhoneNumber = function(/*String*/value){	// summary: Validates 10 US digit phone number for several common formats	// value: The telephone number string	var flags = {		format: [			"###-###-####",			"(###) ###-####",			"(###) ### ####",			"###.###.####",			"###/###-####",			"### ### ####",			"###-###-#### x#???",			"(###) ###-#### x#???",			"(###) ### #### x#???",			"###.###.#### x#???",			"###/###-#### x#???",			"### ### #### x#???",			"##########"		]	};	return dojo.validate.isNumberFormat(value, flags); // Boolean}dojo.validate.us.isSocialSecurityNumber = function(/*String*/value){// summary: Validates social security number	var flags = {		format: [			"###-##-####",			"### ## ####",			"#########"		]	};	return dojo.validate.isNumberFormat(value, flags); // Boolean}dojo.validate.us.isZipCode = function(/*String*/value){// summary: Validates U.S. zip-code	var flags = {		format: [			"#####-####",			"##### ####",			"#########",			"#####"		]	};	return dojo.validate.isNumberFormat(value, flags); // Boolean}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -