标签:多个 嵌入 cti orm xxxxx reg 更改 风格 正则
概念:frame是一种框架,也是一种很常见的网页嵌入方式
<iframe id='ifr1' url='https:xxxxx' width='1080px' height='960px'></iframe>
iframe
刷新不影响整体窗口的刷新(可以实现无刷新上传,在 FormData
无法使用时)iframe
的源都可以不相同(方便引入第三方内容)//方式一:while循环
function strCount(str, target) {
let count = 0
if (!target) return count
while(str.match(target)) {
str = str.replace(target, '')
count++
}
return count
}
//方式二:数组split
function strCount(str, target) {
var arr = [];
arr = str.split(target);
return arr.length - 1;
}
//方式三:正则匹配
function strCount(str, target) {
let matchs = str.match(new RegExp(`(?=${target})`, 'g'))
return matchs ? matchs.length : 0
}
标签:多个 嵌入 cti orm xxxxx reg 更改 风格 正则
原文地址:https://www.cnblogs.com/EricZLin/p/12046331.html