我需要在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进行测试。
答案 0 :(得分:0)
如果您将第三个更改为$('#test').text('end');
,则所有三个都应该在IE8中正常工作。