?? styleexample5.htm
字號:
<html>
<head>
<title>Style Example</title>
<script type="text/javascript">
function sayStyle() {
var oDiv = document.getElementById("div1");
alert(oDiv.style.getPropertyValue("background-color"));
}
</script>
</head>
<body>
<div id="div1" style="background-color: red; height: 50px; width: 50px"></div><br />
<input type="button" value="Get Background Color" onclick="sayStyle()" />
<p><strong>Note: </strong> Internet Explorer does not support the DOM style methods so this example will fail.</p>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -