GVrunCode.js
上传用户:u_thks
上传日期:2022-07-31
资源大小:1910k
文件大小:1k
- function runCode(cod1) {
- cod=document.all(cod1)
- var code=cod.value;
- if (code!=""){
- var newwin=window.open('','',''); //打开一个窗口并赋给变量newwin。
- newwin.opener = null // 防止代码对论谈页面修改
- newwin.document.write(code); //向这个打开的窗口中写入代码code,这样就实现了运行代码功能。
- newwin.document.close();
- }
- }
- //====================================================================
- function copyCode(obj) {
- var rng = document.body.createTextRange();
- rng.moveToElementText(obj);
- rng.scrollIntoView();
- rng.select();
- rng.execCommand("Copy");
- window.status="高亮度包含的代码已被复制到剪贴板!"
- setTimeout("window.status=''",1800)
- rng.collapse(false);
- }