似乎不可能……也许这里有天才!
问问题
168 次
2 回答
3
不需要 jQuery。我只使用它是因为它更容易绑定事件:
$('#your-link').on('click', function(event) {
event.preventDefault();
document.title = 'The new title';
});
另外,出于好奇,您尝试过什么?
于 2012-07-15T06:45:52.930 回答
0
$(document).ready(function(){
$('a').click(function(){
$('head title').text('HelloWorld');
});
});
并且可能需要这样的html
<a href="#">Click here to change title</a>
于 2012-07-15T07:49:50.870 回答