我试图定期从php脚本动态更新文档标题,似乎无法正常工作。我是jquery的初学者,请帮助。
<div id="code" style="border: 1px solid; "></div>
<script>
var blink = true;
setInterval(function(){
if(blink){
jQuery('#code').load('test.php', function(result) {
var theTitle = document.getElementsByTagName("title")[0];
theTitle= 'google'+jQuery('#code').html();
});
//theTitle.text =document.getElementById('code').value;
blink = false;
}else{
jQuery('#code').load('test.php', function(result) {
var theTitle = document.getElementsByTagName("title")[0];
theTitle= 'yahoo'+jQuery('#code').html();
});
blink = true;
}
}, 2000);
答案 0 :(得分:1)
theTitle.textContent ="what you want"
答案 1 :(得分:0)
尝试 -
document.title = "new page title."
答案 2 :(得分:0)
如果你使用jquery试试这个:
var blink = true;
setInterval(function(){
$('#code').load('test.php', function(result) {
$('title').text(blink ? 'google'+$('#code').html() : 'yahoo'+$('#code').html());
blink = !blink;
});
}, 2000);