我需要使用 javascript 来更改 iframe src 的一部分,有没有办法在 iframe src 中将“500”更改为“800”?我尝试了以下代码,但没有成功。如果有人可以提供帮助,将不胜感激。
function bigPhotosets() {
$('iframe.photoset').each(function(){
$(this).attr('src').replace('500','800');
$(this).attr('width').replace('500','800');
});
}
bigPhotosets();