我正在使用 jQuery 在 span 标签内回显页面标题。这很好用,除了每个页面在标题标签中都有网站标题和页面标题。我怎样才能删除它并简单地拥有页面标题?
例如:Superlong Sites 的标题 - 关于我们应该是:关于我们
我的代码:
jQuery(document).ready(function() {
var href = jQuery(location).attr('href');
var url = jQuery(this).attr('title');
jQuery('#current_url').html(url);
$('span#current_url').each(function() { // <---the code in question
console.log($(this).text());
var text = $(this).text().replace('Superlong Site\'s Title- ', '');
$(this).text(text);
});
});
谢谢!