最佳答案
我有一个字符串说
string display_txt = "1st line text" +"\n" + "2nd line text";
在 Jquery 中,我试图使用
('#somediv').html(display_txt).css("color", "green")
很明显,我希望我的 msg 显示在2行,但是 n 显示在消息中。有什么快速解决办法吗?
谢谢,