0
我需要搜索並從網頁源wth javascript中找到確切的圖像url。JavaScript找到一個字符串內的隨機發生的字符串
目前我只能計算出現次數。
我的代碼是:
var count = 0;
var pos = res.body.indexOf("650x365");
while(pos > -1){
++count;
pos = res.body.indexOf("650x365", ++pos);
}
console.log(count); // 2
網址是這樣
http://img.sa.com/c/1/70/650x365/bp/02112015_esa.jpg
什麼是res變量? –
我需要找到圖片url的網頁源代碼 – user8026867
你可以顯示這個url存在的html嗎?另外,你需要整個網址或其中的一部分? –