Internet Explorer not rendering html returned from JQuery ajax post
问题 I have a page with an input box whose onkeyup fires a JQuery ajax post based on what was typed (a search field) The ajax call's posted back html is supposed to populate another div on the page. Here is the jquery ajax post: var o = $(me.results).empty().addClass("aj3load"); $.ajax({ type: "POST", dataType: "text", url: me.url, data: "cmd="+escape(me.cmd)+"&q="+q+"&"+me.args, cache: false, complete: function() { $(o).removeClass("aj3load"); me.ls = q; }, success: function(msg){ $(ajax3.results