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