1

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

3 回答 3

1
theTitle.textContent ="what you want"
于 2012-10-05T09:35:21.667 回答
0

尝试 -

document.title = "new page title."
于 2012-10-05T09:42:10.653 回答
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);
于 2012-10-05T09:49:28.250 回答