script.js
来自「lynda.com 2007年出品的javascript essential t」· JavaScript 代码 · 共 17 行
JS
17 行
window.onload = initForm;window.onunload = function() {};function initForm() { document.getElementById("newLocation").selectedIndex = 0; document.getElementById("newLocation").onchange = jumpPage;}function jumpPage() { var newLoc = document.getElementById("newLocation"); var newPage = newLoc.options[newLoc.selectedIndex].value; if (newPage != "") { window.location = newPage; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?