我正在尝试定期从 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);