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