结果是一样的啊。
$.get("abc.txt",null,function(txt){
alert($("#xxx").html());
$("#xxx").html('<pre>'+txt+'</pre>');
alert($("#xxx").html());
});
Chrome中,第二个alert结果还是<pre></pre>
:(
【 在 zxdong262 的大作中提到: 】
: 这么写:
: $("#xxx").html('<pre>' + txt + '</pre>')
--
FROM 192.55.55.*