标签:
1 /*获取一个指定长度随机数*/
2 csdn.random = function (len) {
3 if (!len) len = 5;
4 var r = Math.random().toString();
5 return r.substr(r.length - len);
6 };
7
8
9 /*判断URL中是否包含字符串s*/
10 csdn.urlHas = function (s) {
11 return window.location.href.toLowerCase().indexOf(s.toLowerCase()) > 0;
12 };
13
14
15
16 /*从cookie获取用户名*/
17 csdn.getUN = function () {
18 var m = document.cookie.match(new RegExp("(^| )UserName=([^;]*)(;|$)"));
19 if (m) return m[2];
20 else return ‘‘;
21 };
22
23
24 function formatBytes(bytes) {
25 var s = [‘Byte‘, ‘KB‘, ‘MB‘, ‘GB‘, ‘TB‘, ‘PB‘];
26 var e = Math.floor(Math.log(bytes) / Math.log(1024));
27 return (bytes / Math.pow(1024, Math.floor(e))).toFixed(2) + s[e];
28 }
29 function returnFalse() { return false; }
30 }
31
32
33 //typeof 运算符返回一个用来表示表达式的数据类型的字符串。
34 function isOptionalValue(value) {
35 return typeof(value) === ‘undefined‘ || value === null;
36 }
标签:
原文地址:http://www.cnblogs.com/719907411hl/p/4508042.html