随笔分类 -  HTML-CSS-JS

摘要:var f = document.getElementById('exportExcel'); var actionUrl = 'envElecPriceAction!downLoadDetailFrist.action?envElecPrice.beginTime=' + beginTime + '&envElecPrice.endTime=' + endTime... 阅读全文
posted @ 2016-11-06 21:23 林暗草惊风丶 阅读(2489) 评论(0) 推荐(0)
摘要:JQuery的extend扩展方法: Jquery的扩展方法extend是我们在写插件的过程中常用的方法,该方法有一些重载原型,在此,我们一起去了解了解。 一、Jquery的扩展方法原型是: extend(dest,src1,src2,src3...); 它的含义是将src1,src2,src3.. 阅读全文
posted @ 2016-08-18 12:01 林暗草惊风丶 阅读(240) 评论(0) 推荐(0)
摘要:网页可见区域宽: document.body.clientWidth网页可见区域高: document.body.clientHeight网页可见区域宽: document.body.offsetWidth (包括边线的宽)网页可见区域高: document.body.offsetHeight (包 阅读全文
posted @ 2016-07-21 16:25 林暗草惊风丶 阅读(391) 评论(0) 推荐(0)
摘要:1 $urlp = function(key){ 2 var qstring = window.location.search; 3 if (!qstring) return (!key || key == '*') ? {} : null; 4 qstring = qstring.replace(/%20/g, ' '); 5 qstring = qs... 阅读全文
posted @ 2016-06-02 16:04 林暗草惊风丶 阅读(228) 评论(0) 推荐(0)