javascript 删除所有内容并替换为iframe
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 删除所有内容并替换为iframe相关的知识,希望对你有一定的参考价值。
(function(elements) {
function removeElements(elements){
elements.forEach((type) => {
const large = document.querySelectorAll(type).length;
for (let i = 0; i < large; i++) {
document.querySelector(type).remove();
}
});
}
function removeChilds(){
const large = document.querySelector('body').childNodes.length
for (i = 0; i < large; i++) {
document.querySelector('body').childNodes[0].remove();
}
}
function createIframe(){
const style = 'width: 100%; height: 100%; overflow: hidden; margin: 0;';
document.querySelector('html').setAttribute('style', style);
document.querySelector('body').setAttribute('style', style);
const iframe = document.createElement('iframe');
iframe.src = window.location.href;
iframe.setAttribute('style', 'width: 100%; height: 100%; border: none;');
document.querySelector('body').appendChild(iframe);
}
removeElements(elements);
removeChilds();
createIframe();
})(['script', 'link', 'style']);
(function(elements){function removeElements(elements){elements.forEach((type)=>{const large=document.querySelectorAll(type).length;for(let i=0;i<large;i++){document.querySelector(type).remove()}})}
function removeChilds(){const large=document.querySelector('body').childNodes.length
for(i=0;i<large;i++){document.querySelector('body').childNodes[0].remove()}}
function createIframe(){const style='width: 100%; height: 100%; overflow: hidden; margin: 0;';document.querySelector('html').setAttribute('style',style);document.querySelector('body').setAttribute('style',style);const iframe=document.createElement('iframe');iframe.src=window.location.href;iframe.setAttribute('style','width: 100%; height: 100%; border: none;');document.querySelector('body').appendChild(iframe)}
removeElements(elements);removeChilds();createIframe()})(['script','link','style'])
以上是关于javascript 删除所有内容并替换为iframe的主要内容,如果未能解决你的问题,请参考以下文章
在包括冒号之前删除所有内容并将逗号替换为换行符
JavaScript 替换所有匹配内容
使用纯JS删除所有内容
替换/删除两个字符之间的所有内容[重复]
“发生了致命的JavaScript错误。你想发送一个错误报告吗?“在phpmyadmin上
如何使用javascript替换textarea元素中的文本? [复制]