一个alert换行的问题!
在使用JQUERY的时候,测试耍的时候,遇到这样的情况
在test.html当中
$(function(){ alert("aa\nbb"); //这里能正常换行 $.post( "Default.aspx", function(response){ alert(response); //这里输出的就是"aa\nbb" } ) })response.write("aa\nbb"); //这里测试的时候,还用\\n测试,\r,<br />都没有换行效果。response.end();