Home  >  Article  >  Web Front-end  >  Use Javascript array to handle the connection problem of multiple strings_javascript skills

Use Javascript array to handle the connection problem of multiple strings_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:48:05814browse
Copy code The code is as follows:

var str = new Array();
str[0] = '
  • '.replace('{0}', 'domainid');
    str[1] = 'domainname';
    str[2] = ''.replace('{0}', 'domainid');
    str[3] = '< /li>';
    alert(str.join(''));

  • //
    // Example 2
    //
    Copy code The code is as follows:

    var str2 = [
    '
  • '.replace('{0}', 'domainid'),
    'domainname',
    ' '.replace('{0}', 'domainid'),
    '
  • '
    ];
    alert(str2.join(''));
    Statement:
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn