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

📄 script06.js

📁 图灵程序设计丛书 JavaScript基础教程源代码
💻 JS
字号:
window.onload = initWindows;function initWindows() {	var newText, newBr;	var newWindow = window.open("","newWin","location,scrollbars,resizable=yes,width=300,height=300");	var newDoc = newWindow.document;		newDoc.title = "Generated Window";	newDoc.bgColor = "#000000";	newDoc.fgColor = "#FFFFFF";	newDoc.body.innerHTML = "<h2>This window shows the result from the other window<\/h2><div id='looper'> </div>";		var loopDiv = newDoc.getElementById("looper");	for (var i=0; i<100; i++) {		newText = newDoc.createTextNode("The loop is now at: " + i);		newBr = newDoc.createElement("br");				loopDiv.appendChild(newText);		loopDiv.appendChild(newBr);	}}

⌨️ 快捷键说明

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