如果
<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>
答案 0 :(得分:0)
使用split
和join
。使用forEach
循环遍历数组,Split
example
和join
上的字符串使用{ {1}}。
example2