怎么把这段代码
$(document).ready(function(){
$("button").click(function(){
$(this).hide();
写到.js文件中 然后使用
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<button type="button">Click me</button>
</body>
</html>
慕勒0069038