似乎不可能......也许这里有个天才!
答案 0 :(得分:3)
不需要jQuery。我只使用它,因为它更容易绑定事件:
$('#your-link').on('click', function(event) {
event.preventDefault();
document.title = 'The new title';
});
另外,出于好奇,你有什么尝试?
答案 1 :(得分:0)
$(document).ready(function(){
$('a').click(function(){
$('head title').text('HelloWorld');
});
});
并且可能需要像这样的HTML
<a href="#">Click here to change title</a>