简体   繁体   English

JavaScript innerHTML 不适用于 IE?

[英]JavaScript innerHTML is not working for IE?

I am using ajax call for to bring the list for my drop down and assign it to html,works fine for mozilla nad crome but for IE it displays a blank dropdown我正在使用 ajax 调用为我的下拉列表带来列表并将其分配给 html,对于 mozilla nad crome 工作正常,但对于 IE,它显示一个空白下拉列表

var xmlhttp;

var strURL = "selectedu.php?selectward="+selectward;

if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
    xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function(){
    if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
        if(xmlhttp.responseText=="NOER")
        {
            alert("Select ER Type");
        }
        else
        {
            document.getElementById(id).innerHTML=xmlhttp.responseText;
        }   
    }
}
xmlhttp.open("GET",strURL,true);
xmlhttp.send();

The innerHTML property has some problems in IE when trying to add or update form elements, the workaround is to create a div and set the innerHtml property on that before appending to the DOM:在 IE 中尝试添加或更新表单元素时, innerHTML属性有一些问题,解决方法是创建一个 div 并在附加到 DOM 之前在其上设置 innerHtml 属性:

var newdiv = document.createElement("div");
newdiv.innerHTML = xmlhttp.responseText;
var container = document.getElementById(id);
container.appendChild(newdiv);

If the document is XHTML the IE will not allow the innerHTML property to be set directly.如果文档是 XHTML,IE 将不允许直接设置innerHTML属性。 You would need to parse the responseText into DOM elements and replace the contents of the existing element with those elements.您需要将responseText解析为 DOM 元素,并用这些元素替换现有元素的内容。

If you're using jQuery you can use append() like this:如果你使用 jQuery,你可以像这样使用append()

$get('yourTargetObjectId').append('<p>this test to add</p>');

append() inserts content at the end of the selected element and use prepend() to insert at the beginning of the selected element. append()在所选元素的末尾插入内容,并使用prepend()在所选元素的开头插入内容。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM