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