使用jQuery获取当前页面的URL和标题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery获取当前页面的URL和标题相关的知识,希望对你有一定的参考价值。

  1. <p>Current page URL: <span id="this_url">www.example.com</span>.</p>
  2. <p>Current page title: <span id="this_title">mytitle</span>.</p>
  3.  
  4. <script type="text/javascript">
  5. jQuery(document).ready(function () {
  6. var href = jQuery(location).attr('href');
  7. var url = jQuery(this).attr('title');
  8. jQuery('#this_title').html('<strong>' + href + '</strong>');
  9. jQuery('#this_url').html('<strong>' + url + '</strong>');
  10. });
  11. </script>

以上是关于使用jQuery获取当前页面的URL和标题的主要内容,如果未能解决你的问题,请参考以下文章

jquery获取当前页面的URL信息

如何在 jQuery Mobile 1.4.5 中获取当前页面 URL?

jquery获取当前页面的URL信息

jquery获取当前页面的URL信息

jquery获取当前页面的URL信息

JQUERY获取当前页面的URL信息