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

📄 script.js

📁 lynda.com 2007年出品的javascript essential training教学视频(Dori Smith主讲)的配套源码。
💻 JS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -