摘要: 1 var layout=[ 2 { 3 title:'脚本对象名称', 4 treeNodes:true, 5 headerClass:'value_col', 6 colClass:'value_col', 7 style:'width:60%' 8 }, 9 { 10 title:'操作', 阅读全文
posted @ 2018-05-11 15:18 前端极客 阅读(15010) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 6 7 8 9 var picw = $("#pic").width(); 10 var pich = $("#pic").height(); 11 var x1 = parseInt(picw*0.1820); 12 var y1 = parseInt(pich*0.2955); 13 var x2 = parseInt(picw*0.32... 阅读全文
posted @ 2018-05-11 12:48 前端极客 阅读(1620) 评论(0) 推荐(0) 编辑
摘要: 1 var timeout = null;//onresize触发次数过多,设置定时器 2 window.onresize = function () { 3 clearTimeout(timeout); 4 timeout = setTimeout(function () { window.location.reload(); }, 100);//页面大小变化,重新加载页... 阅读全文
posted @ 2018-05-11 09:53 前端极客 阅读(936) 评论(0) 推荐(0) 编辑