使用jQuery获取当前页面的URL和标题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery获取当前页面的URL和标题相关的知识,希望对你有一定的参考价值。
<p>Current page URL: <span id="this_url">www.example.com</span>.</p> <p>Current page title: <span id="this_title">mytitle</span>.</p> jQuery(document).ready(function () { var href = jQuery(location).attr('href'); var url = jQuery(this).attr('title'); jQuery('#this_url').html('<strong>' + url + '</strong>'); }); </script>
以上是关于使用jQuery获取当前页面的URL和标题的主要内容,如果未能解决你的问题,请参考以下文章