function webOrigin() { return window.location.origin + '/web/api/' } function getQueryParam(name){ var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if (r != null) { return unescape(decodeURI(r[2])) } return ''; } // 鏃ユ湡杞椂闂存埑 function dateToTimestamp(time) { if(!time) return 0 var date = new Date(time.replace(/-/g,'/')); return parseInt(date.getTime()/1000) } function nowTimeStamp() { return Math.round(new Date().getTime()/1000) } function delHTML(str,all = false) { if (!str) return ''; var str=str.replace(/<\/?[^>]*>/gim,"");//鍘绘帀鎵€鏈夌殑html鏍囪 var result=str.replace(/(^\s+)|(\s+$)/g,"");//鍘绘帀鍓嶅悗绌烘牸 if (all) return result.replace(/\s/g,"");//鍘婚櫎鏂囩珷涓棿绌烘牸 return result; } function cMobile(phone) { if(phone == ''){ return false }else{ return !(phone.search(/^1(3|4|5|6|7|8|9)\d{9}$/) == -1) } } function incDownTimes(r_id) { $.ajax({ type : "post", url : "/resource/times/inc/"+r_id, }) }