12 2017 档案
摘要:查找指定元素在数组中的index。 var arr=[1,2,3]; $.inArray(2, arr);//返回1 arr.splice($.inArray(2, arr),1); //从数组中删除指定元素。 arr.join(",") //返回"1,2,3"
阅读全文
摘要:1.正数含小数 2.字母 /^[a-zA-Z]*$/ 3.汉字 /^[\u4e00-\u9fa5]*$/
阅读全文
摘要:@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { }
阅读全文
摘要:public void Export() { HttpResponse Response = System.Web.HttpContext.Current.Response; // Load your source workbook Workbook workbook = new Workbook(); /...
阅读全文
摘要:!DOCTYPE html> Document dfdffffffffffffffffffffffffffff
阅读全文
摘要:List<string> ConditionList = new List<string>(); List<string> tempParameters = new List<string>();//用来存(@a0,@a1,@a2) string value = HttpContext.Curren
阅读全文