我希望获得一个没有IP或主机名的URL地址,例如
image.htm?diskindex=0&diskcount=2&sortby=0&view=0&imagefilter=1&sizemore=1
但是
window.location.href
返回以下结果。http://192.168.0.149:9031/image.htm?diskindex=0&diskcount=2&sortby=0&view=0&imagefilter=1&sizemore=1
最佳答案
像这样使用split()
方法将字符串拆分为数组。
关于javascript - 如何使用javascript或jQuery获取不带IP或主机名的URL地址?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41800401/