下面的JS代码返回当前浏览网页的相对路径,就是不要域名部分的路径,如:/codes/share
<!DOCTYPE html> <html> <body> <script> document.write(location.pathname); </script> </body> </html>
下面的JS代码返回当前浏览网页的相对路径,就是不要域名部分的路径,如:/codes/share
<!DOCTYPE html> <html> <body> <script> document.write(location.pathname); </script> </body> </html>