JavaScript获取当前浏览网页的完整地址,JS中我们可以通过location对象的href来获取完整url地址
<!DOCTYPE html> <html> <body> <script> document.write(location.href); </script> </body> </html>
JavaScript获取当前浏览网页的完整地址,JS中我们可以通过location对象的href来获取完整url地址
<!DOCTYPE html> <html> <body> <script> document.write(location.href); </script> </body> </html>