Posted in Javascript onApril 03, 2015
本文实例讲述了JavaScript获得页面base标签中url的方法。分享给大家供大家参考。具体如下:
如果网页中定义了base标签,我们可以通过js代码获得base的url地址
<!DOCTYPE html> <html> <head> <base id="htmldom" href="https://3water.com/"> </head> <body> <p>Base URL is: <script> document.write(document.getElementById("htmldom").href); </script> </p> </body> </html>
运行结果如下:
Base URL is:https://3water.com/
希望本文所述对大家的javascript程序设计有所帮助。
JavaScript获得页面base标签中url的方法
- Author -
work24声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@