用javascript定义一个长字符串
这个问题在这里已经有了答案:
只要把在每行的最后仍然在字符串中
str = " The quick brown // <---
fox jumped over the log.";
最简单的方法是在行尾添加一个 :
function test_str() {
str = " The quick brown
fox jumped over the log.";
alert(str);
}
jsFiddle例子
尝试这个:
str = " the quick brown foxrn" +
"fox jumped over the lazy dog";
链接地址: http://www.djcxy.com/p/30437.html