jsはhtmlコードの中のすべてのピクチャーの住所を獲得します.
849 ワード
もっと読む
/**
* JS html
* @param htmlstr
* @returns imgsrcArr
*/
function getimgsrc(htmlstr) {
var reg = /'|")?([^'"]+)('|")?(?:\s+|>)/gim;
var imgsrcArr = [];
while (tem = reg.exec(htmlstr)) {
imgsrcArr.push(tem[2]);
}
return imgsrcArr;
}
(''pre.prettyprettyprint code').each(function(){var lins=$(this).text().split('