案例:HTML DOM案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function gettip(txt)
5
{
6
document.getElementById('tip').innerHTML='W3xue 提供有关 WEB 标准和脚本技术的教程'
7
}
8
</script>
9
</head>
10
11
<body>
12
13
<p>请双击 "W3xue.com"</p>
14
<table>
15
<tr>
16
<th ondblclick="gettip()" valign="top">W3xue.com</th>
17
<th id="tip"> </th>
18
</tr>
19
</table>
20
21
</body>
22
</html>
23