JsFiddle 如何禁止 document.write
How JsFiddle disallow document.write
jsfiddle [我如何..]如何破解任何代码 document.write();
在 js textarea 中并且不在结果 iframe 中执行该脚本 .. 纯 javascript
是否可行
尝试 :) 但我知道这不好而且太天真了
var getjs = document.getElementById('js-textarea');
getjs.replace(/document.write/g,'');
// or replace with innerHTML
getjs.replace(/document.write/g,'myIFrame.body.innerHTML=');
//working but it doesnt excute script
希望能找到帮助的建议
您可以简单地覆盖函数:
document.write=function(){
alert('document.write is not allowed');
}
document.write('this should be written');
jsfiddle [我如何..]如何破解任何代码 document.write();
在 js textarea 中并且不在结果 iframe 中执行该脚本 .. 纯 javascript
尝试 :) 但我知道这不好而且太天真了
var getjs = document.getElementById('js-textarea');
getjs.replace(/document.write/g,'');
// or replace with innerHTML
getjs.replace(/document.write/g,'myIFrame.body.innerHTML=');
//working but it doesnt excute script
希望能找到帮助的建议
您可以简单地覆盖函数:
document.write=function(){
alert('document.write is not allowed');
}
document.write('this should be written');