我需要在div上顯示動態內容。內容每秒更新一次。我嘗試這些代碼,它們不工作的IE:IE更改div內容
jQuery('#test').html("end"); // this works normal with opera , with html tags
// or
document.getElementById('test').innerHTML = "End"; // this doesnt work normal in opera with html tags
// or
$('test').text('end');
我與IE 8
你錯過了最後一個'#'。無論如何,你爲什麼要談論歌劇,因爲你正在測試它,並在IE上有問題? – Shikiryu 2012-07-25 07:51:23
我很確定'$('#test')。html(「bananas」);'會在IE6 +中工作。 – albertjan 2012-07-25 07:52:09
我需要它在opera,chrome和FireFox,IE中工作。我不知道發生了什麼,但它現在正在工作。我沒有改變任何事情。那很好 。感謝您的回覆 – 2012-07-25 07:56:03