JQuery 핸드폰 번호 판단

/**
 * jQuery mobiletype
 * 
 * @param MobileNumber
 *            ReturnLanguage(zh or en)
 * @returns mobiletype
 * 
 * Example Code <code>
 * 			$.mobiletype("13810095555", "zh"); 
 * 		</code> Result <code>
 * 			"  "
 * 		</code>
 * 
 * @author StyleAnt [ [email protected] ]
 * 
 * version 1.0
 */
(function($) {
	var mobiledata = [
			{
				type : 'ChinaMobile',
				title : [ 134, 135, 136, 137, 138, 139, 150, 151, 152, 157,
						158, 159, 187, 188, 184 ],
				name : '  '
			}, {
				type : 'ChinaUnicom',
				title : [ 130, 131, 132, 155, 156, 185, 186 ],
				name : '  '
			}, {
				type : 'ChinaTelecom',
				title : [ 133, 153, 180, 189 ],
				name : '  '
			} ];

	var search = function(k, k1) {
		var json = eval(mobiledata);
		for ( var i = 0; i < json.length; i++) {
			var mobile_title = json[i].title;
			for ( var j = 0; j < mobile_title.length; j++) {
				if (mobile_title[j] == parseInt(k)) {
					if (k1 == 'zh') {
						return json[i].name;
					} else {
						return json[i].type;
					}
				}
			}
		}
	};

	$.extend({
		mobiletype : function(string, string) {
			if (string.match('^[0-9]*[1-9][0-9]*$') && string.length > 3) {
				var k = string.substring(0, 3);
				return search(k, string);
			} else {
				return "Unknow";
			}
		}
	});
})(jQuery);
 
호출 방법: $.mobiletype("13810095555", "zh");
PS: 처음으로 jquery 플러그인을 썼는데 잘 못 썼어요. 고수님 봐주세요. 허허, 감사합니다!

좋은 웹페이지 즐겨찾기