var iframe = '<iframe src="http://someaddress.com" width="600" height="500"></iframe>';
我想从变量中获取src,width和height,并将其变为自己的变量。我知道我可以使用正则表达式,但我不知道如何。
答案 0 :(得分:4)
var iframe = '<iframe src="http://someaddress.com" width="600" height="500"></iframe>',
regEx = /(src|width|height)=["']([^"']*)["']/gi;
iframe.replace(regEx, function(all, type, value) {
console.log(type); // src/width/height
console.log(value); //url/600/500
});