手机浏览器上打开url A, A中使用js跳转到url B(window.location.href="B"), 如何在pc上获取带url B
发布网友
发布时间:2022-04-25 19:07
我来回答
共2个回答
热心网友
时间:2022-04-25 20:36
http://localhost/test/test.htm?id=1
<script languge=javascript>
alert(window.location.pathname); --返回 /test/test.htm
alert(window.location.search); --返回 ?id=1
alert(window.location.href); --返回 http://localhost/test/test.htm?id=1
</script>
热心网友
时间:2022-04-25 21:54
请叫我雷锋