IE改变div内容

时间:2012-07-25 07:48:11

标签: jquery internet-explorer-8

我需要在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进行测试。

1 个答案:

答案 0 :(得分:0)

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