我需要编写一个适用于 button1 和 button2 的函数。我点击 button1,我可以隐藏 t,但是如何为 button2 添加相同的函数?
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("#button1").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<button id="button1">Button1</button>
<button id="button2">Button2</button>
</body>
</html>