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

📄 debugtop.html

📁 WEB IM 实现 j2ee项目的IM功能 可继承到现有的系统当中
💻 HTML
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>  <head>		<script>			function toggleLog(el) {			if (parent.oDbg.debug) {			parent.oDbg.stop();			el.innerHTML = 'Start';			} else {			parent.oDbg.start();			el.innerHTML = 'Stop';			}			el.blur();			}			function levelChanged(el) {			if (el.selectedIndex == 0)			return;			parent.oDbg.setLevel(el.options[el.selectedIndex].value);			}					</script>		<style type="text/css">			body {			font-size: 0.8em;			font-family: sans-serif;			text-align: right;			margin: 2;			background-color: #cfd498;			}			select {			font-size: 0.8em;			font-family: sans-serif;			}			button {			font-size: 0.8em;			font-family: sans-serif;			border: 1px solid black;			}		</style>  </head>  <body>		Set Level: <select onchange="levelChanged(this);" id="lvlSelector">			<script>				for (var i=0; i <= parent.opener.DEBUGGER_MAX_LEVEL; i++)					document.write("<option value='"+i+"'>"+i+"</option>");			</script>		</select>&nbsp;		<button onclick="toggleLog(this);" id="toggleLogButton">Stop</button>&nbsp;		<button onclick="top.DebugBottom.document.body.innerHTML='';">Clear</button>  </body></html>

⌨️ 快捷键说明

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