$(document).ready(function () {
	$("#buyerAddForm").submit(function () {
		
		var checkBoxs = document.getElementsByName("supplyItemId");//所有的checkBox
		
		var serveProduct = $.trim($("#serveProduct").val());//购买产品，服务
		
		var authentication = $.trim($("#authentication").val());//资质认证
		
		var mobilePhone1 = $.trim($("#mobilePhone1").val());
		
		var mobilePhone2 = $.trim($("#mobilePhone2").val());
		var newPar=/^[\w\s]+$/

		return true;
	});
});
