js小知识
1:获取参数之前的全路径:
function common() {
var location = (window.location + '').split('/');
var basePath = location[0] + '//' + location[2] + '/' + location[3]
+ '/';
return basePath;
}
例如:http://www.nb.tt/a/b/c.html?-----
2:js快速导出项目中已有的文件
$("#export").click(function() {
window.open("../template/urls.xlsx");
})