案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<link rel="stylesheet" type="text/css" 
4
id="style1" href="/example/hdom/try_dom_link.css" />
5
6
<script type="text/javascript">
7
function disableStyle()
8
{
9
document.getElementById("style1").disabled=true
10
}
11
</script>
12
</head>
13
<body>
14
15
<form>
16
<input type="button" onclick="disableStyle()" value="Disable style sheet" />
17
</form>
18
19
</body>
20
</html>
21