JavaScript innerHTML is not working for IE?

后端 未结 3 1621
我寻月下人不归
我寻月下人不归 2020-11-30 12:49

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

v         


        
3条回答
  •  温柔的废话
    2020-11-30 13:45

    If the document is XHTML the IE will not allow the innerHTML property to be set directly. You would need to parse the responseText into DOM elements and replace the contents of the existing element with those elements.

提交回复
热议问题