⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 14-2.txt

📁 Javascript语言开发经典教程开发
💻 TXT
字号:
<SCRIPT>var _console = null;function debug(msg) {    // Open a window the first time we are called, or after an existing    // console window has been closed.    if ((_console == null) || (_console.closed)) {         _console = window.open("","console","width=600,height=300,resizable");        // Open a document in the window to display plain text.        _console.document.open("text/plain");    }    _console.document.writeln(msg);}</SCRIPT><!-- Here's an example of using this script. --><SCRIPT>var n = 0;</SCRIPT><FORM><INPUT TYPE="button" VALUE="Push Me"       onClick="debug('You have pushed me:\t' + ++n + ' times.');"></FORM>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -