jquery .html() does not work on ie8

后端 未结 7 597
耶瑟儿~
耶瑟儿~ 2021-02-04 05:48

I have a jquery function which makes an ajax call to a webservice method on the web server, the method returns a html table with data. I am using .html() to render the return va

7条回答
  •  滥情空心
    2021-02-04 06:01

    You could alert your response before assigning it html()

    OR

    You could use innerHTML property instead html() of jquery (though it's same)

    And you might want to check this link

提交回复
热议问题