<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
		
	</style>
	<script type="text/javascript" src="jquery-1.10.1.min.js"></script>
</head>
<body>
	<script>
		$(function()
		{
			/*
            注意点:
            可以添加多个相同或者不同类型的事件,不会覆盖
            */
           $("button").click(function()
           	{
           		alert("贵哥");
           	});
           $("button").on("click",function()
           	{
           		alert("李文");
           	});
		});
	</script>
	<button>按钮</button>
</body>
</html>