JS 실행, 복사, 코드 로 저장 합 니 다.

6774 단어 js
  //    
        function runEx(cod1) {
            cod = document.getElementById(cod1)
            var code = cod.value;
            if (code != "") {
                var newwin = window.open('', '', '');
                newwin.opener = null
                newwin.document.write(code);
                newwin.document.close();
            }
        }
        //
        function doCopy(ID) {
            if (document.all) {
                textRange = document.getElementById(ID).createTextRange();
                textRange.execCommand("Copy");
            }
            else {
                //alert("      IE   ");
                copyToClipboard(document.getElementById(ID).value);
            }
        }
        //     
        function saveCode(cod1) {
            cod = document.getElementById(cod1)
            var code = cod.value;
            if (code != "") {
                var winname = window.open('', '_blank', 'top=10000');
                winname.document.open('text/html', 'replace');
                winname.document.write(code);
                winname.document.execCommand('saveas', '', 'code.htm');
                winname.close();
            }
        }
        function copyToClipboard(txt) {
            if (window.clipboardData) {
                window.clipboardData.clearData();
                window.clipboardData.setData("Text", txt);
            } else if (navigator.userAgent.indexOf("Opera") != -1) {
                window.location = txt;
            } else if (window.netscape) {
                try {
                    netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
                } catch (e) {
                    alert("      !
'about:config'
'signed.applets.codebase_principal_support' 'true'"); } var clip = Components.classes['@mozilla.org/widget/clipboard;1'].createInstance(Components.interfaces.nsIClipboard); if (!clip) return; var trans = Components.classes['@mozilla.org/widget/transferable;1'].createInstance(Components.interfaces.nsITransferable); if (!trans) return; trans.addDataFlavor('text/unicode'); var str = new Object(); var len = new Object(); var str = Components.classes["@mozilla.org/supports-string;1"].createInstance(Components.interfaces.nsISupportsString); var copytext = txt; str.data = copytext; trans.setTransferData("text/unicode", str, copytext.length * 2); var clipid = Components.interfaces.nsIClipboard; if (!clip) return false; clip.setData(trans, null, clipid.kGlobalClipboard); } }

좋은 웹페이지 즐겨찾기