<script>
			function getSum() {
				alert("点了一下");
			}
		</script>
		<input type="button" value="点击" onclick="getSum()" />

可以将事件绑定在按钮上,点击就触发

也可以绑定在js里面:

<input id="an1" type="button" value="点击"/>
		<script>
			function dian() {
				alert("点了一下");
			}
			document.getElementById("an1").onclick = dian;
		</script>

将方法中的点击属性重新付给它自己

还有一种就是在标签里直接设置:

<input id="an1" type="button" value="点击" onclick="alert('点了一下')"/>

悬浮监听:

<marquee behavior="scroll" onmouseover="this.stop()" onmouseout="this.start()">
			<img src="img/ys.png" width="20%" height="20%" />
		</marquee>

悬浮在图片上停止,离开图片继续