<iframe width="100%" height="100%" seamless frameBorder="0" scrolling="no" :src='getSrc(item.frameLink)' > </iframe>
因为后台的直接返回的是iframe标签,不好去控制宽高
getSrc(item) {
var srcReg = /src=[\'\"]?([^\'\"]*)[\'\"]?/i;
if (item.match(srcReg)) {
var newText = item.match(srcReg)[1]
} else {
var newText = ''
}
return newText
}
原文地址:https://www.cnblogs.com/antyhouse/p/12169293.html
时间: 2024-11-05 12:25:56