用javascript定义一个长字符串

这个问题在这里已经有了答案:

  • 在JavaScript中创建多行字符串34个答案

  • 只要把在每行的最后仍然在字符串中

    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

    上一篇: Defining a long string with javascript

    下一篇: Set a string of HTML equal to a variable in javascript