案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function mouseUp()
6
{
7
alert('You just clicked the text!');
8
}
9
</script>
10
</head>
11
<body>
12
13
<p onmouseup="mouseUp()">Click the text,but don't raise your finger rapidly!</p>
14
15
</body>
16
</html>