从字符串中获取特定值

时间:2015-01-28 09:50:25

标签: javascript angularjs-scope

有谁知道如何从字符串中获取图片网址?我可以用逗号分隔2个URL或两个以上,其中一些不会成为图像。

 var sample_str = "http://domain.com/test.html,http://another.domain.com/images/1234.jpg";

基本上我想要做的只是获取图片网址并省略其余部分。

 http://another.domain.com/images/1234.jpg

1 个答案:

答案 0 :(得分:1)

使用拆分并运行值。沿着:

var s = "http://domain.com/test.html,http://another.domain.com/images/1234.jpg";
var ss = s.split(",");
for (var i=0; i<ss.length; i++) {
//for (var i in ss) {
    document.write(ss[i]);
    document.write("<br/>");
}