随笔分类 -  Js

摘要:cookie.jsfunction Cookie(key,value){ this.key=key; if(value!=null) { this.value=escape(value); } this.expiresTime=null; this.... 阅读全文
posted @ 2015-10-30 12:17 Demo金 阅读(491) 评论(0) 推荐(0)
摘要:inputjquery提交 $(function () { document.onkeydown = function (event) { var e = event || window.event || arguments.callee.ca... 阅读全文
posted @ 2015-10-30 11:48 Demo金 阅读(602) 评论(0) 推荐(0)
摘要:对于一个数组的排序,默认的sort()按字符编码排序:vartestArray=[3,324,5345,6546,134,5654,665];testArray.sort();alert(testArray);按照数值大小排序:vartestArray=[3,324,5345,6546,134,56... 阅读全文
posted @ 2015-09-23 15:39 Demo金 阅读(270) 评论(0) 推荐(0)