使用javascript或php更改var img_list值

时间:2019-02-08 12:28:17

标签: javascript jquery

如果

 <script>
                var img_list = 
    ["https:\/\/img3.example.me\/upload\/511bd439da25cc716e88a2e2ac0fb3ac.jpg"
        ,"https:\/\/img3.example.me\/upload\/77ac7d2ab7357ca181010905b228842d.jpg"
        ,"https:\/\/img3.example.me\/upload\/72387065c5464e8ce92297df783a2437.jpg"
];
            </script>

有这样的事情 我想将其更改为

 <script>
                var img_list = 
    ["https:\/\/img3.example2.me\/upload\/511bd439da25cc716e88a2e2ac0fb3ac.jpg"
        ,"https:\/\/img3.example2.me\/upload\/77ac7d2ab7357ca181010905b228842d.jpg"
        ,"https:\/\/img3.example2.me\/upload\/72387065c5464e8ce92297df783a2437.jpg"
];
            </script>

1 个答案:

答案 0 :(得分:0)

使用splitjoin。使用forEach循环遍历数组,Split examplejoin上的字符串使用{ {1}}。

example2