摘要:
auto.waitFor(); //console.show(); var height = device.height; var width = device.width; var curr_time = new Date(); var now_D = curr_time.getDay(); lo 阅读全文
摘要:
1、判断json是否为空 jQuery.isEmptyObject(); //写法 $.isEmptyObject(jsonData); 2、遍历json function getHsonLength(json{ var jsonLength=0; for (var i in json){ json 阅读全文
摘要:
C# List 复制克隆副本方法一: List<string> t = new List<string>(); //original List<string> t2 = new List<string>(t.ToArray()); // copy of t 方法二: //It is a one li 阅读全文