JavaScript学习笔记 3-if-then 和Link Events(链接事件)
(出处:http://www.cnblogs.com/tograce/category/157013.html)
if-then Branching
语法
if (condition) {
code to be executed if condition is true
}
code to be executed if condition is true
}
实例
先来一个简单的:Code
另一实例:
Code
Link Events (链接事件)
用户点击一个链结,或将鼠标移到其上,JavaScript发送一个链结事件。
一种链结事件叫做onClick, 当用户点击它时才发送。
另一种叫onMouseOver,用户将鼠标移到上面时即发送。
<html>
<head>
</head>
<body>
<a href="#" onClick="alert('Ooo, do it again!');">Click on me!</a>
<a href="#" onMouseOver="alert('Hee hee!');">Mouse over me!</a>
</body>
</html>
<head>
</head>
<body>
<a href="#" onClick="alert('Ooo, do it again!');">Click on me!</a>
<a href="#" onMouseOver="alert('Hee hee!');">Mouse over me!</a>
</body>
</html>