參考:https://blog.csdn.net/u012664198/article/details/82700024
var urlPath = window.document.location.href; //瀏覽器顯示地址 http://10.15.5.83:5555/ISV/demo.aspx?a=1&b=2 var docPath = window.document.location.pathname; //文件在服務器相對地址 /ISV/demo.aspx var index = urlPath.indexOf(docPath); var serverPath = urlPath.substring(0, index);
