?? 4.2.3.html
字號:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>改變網頁背景色</title>
</head>
<body>
<input id="btn" type="button" value="改變網頁背景色"/>
</body>
</html>
<script language="JavaScript" type="text/javascript">
<!--
var btn=document.getElementById("btn");
btn.onclick=function(){
var color=prompt("請輸入顏色名稱或顏色代碼:","");
changeBgColor(color);
}
function changeBgColor(color){
document.bgColor=color;
}
//-->
</script>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -