Home > Web Front-end > JS Tutorial > body text

用Javascript数组处理多个字符串的连接问题_javascript技巧

WBOY
Release: 2016-05-16 18:48:05
Original
798 people have browsed it
复制代码 代码如下:

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

    //
    // 示例2
    //
    复制代码 代码如下:

    var str2 = [
    '
  • '.replace('{0}', 'domainid'),
    'domainname',
    ''.replace('{0}', 'domainid'),
    '
  • '
    ];
    alert(str2.join(''));
    source:php.cn
    Statement of this Website
    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
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!