上一页 1 ··· 3 4 5 6 7
摘要: //限制小数点位数 function doFix(value){ var index=""; value+=""; index=value.indexOf("."); if(index>0){ value=parseFloat(value); value=value.toFixed(4); value=parseFl... 阅读全文
posted @ 2018-01-07 11:03 履霜.1989 阅读(854) 评论(0) 推荐(0)
摘要: //通过id获取DOM对象 function $$(id) { return document.getElementById(id); } 阅读全文
posted @ 2018-01-07 11:01 履霜.1989 阅读(174) 评论(0) 推荐(0)
摘要: //获取网页文件名 var pathname=location.pathname; var htmlFileName=pathname.substr(pathname.lastIndexOf("/")+1); 阅读全文
posted @ 2018-01-07 10:57 履霜.1989 阅读(259) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7