我在一個簡單的項目中使用了這些代碼,我想在單擊按鈕時刷新新聞代碼。 src正在改變,但它不顯示打印一個簡單的JavaScript的PHP文件的內容。在實時頁面中刷新js src之後,document.write函數不起作用
這裏是個HTML
<marquee id="ticker"></marquee>
<button onclick="refresh()">Refresh</button>
這裏的JS
function refresh(){
document.getElementById('ticker').innerHTML = "<script src='ticker.php?" + new Date().getTime() + "'></script>";
}
這裏就是裏面ticker.php
<?php
echo "document.write('It is the scrolling news');";
?>
不應該'ticker.php'是一個HTTP請求與回調,而不是一個JS腳本源? –
試圖使它簡單 –