-1

我需要在 div 上显示动态内容。内容每秒更新一次。我尝试了这些代码,它们不适用于 IE:

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 进行测试。

4

1 回答 1

0

如果您将第三个更改为$('#test').text('end');,则所有三个都应该在 IE8 中正常工作。

于 2012-07-25T07:56:28.523 回答