当前位置: 代码迷 >> 综合 >> 虚拟定位能加人
  详细解决方案

虚拟定位能加人

热度:45   发布时间:2023-09-08 20:27:13.0
虚拟定位能加人
现在大多网站都有“运行代码”的功能,搜索吧也很早就实现了这个功能,但最近在做一个项目时,发现有些需要刷新才能看到结果,自己摸索了下,其实解决方法很简单,看如下代码:

function runCode(cod1) { 
    cod=document.getElementById(cod1) 
    var code=cod.innerText; 
    var newwin=window.open('','',''); 
    newwin.opener = null; 
    newwin.document.write(code); 
    newwin.location.reload(); 
    newwin.document.close(); 
}
只要加上这句就可以了:

newwin.location.reload();  虚拟定位能加人
  相关解决方案