把JQuery代码单独放到.js文件中使用的问题

怎么把这段代码 

$(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>



一人我编程累
浏览 2340回答 1
1回答

慕勒0069038

xxx.js =>document.write('<script type="text/javascript" src="/jquery/jquery.js"></script>></script>');$(document).ready(function(){  $("button").click(function(){  $(this).hide();xxx.html =><html><head><script type="text/javascript" src="/xxx.js"></script></head><body><button type="button">Click me</button></body></html>是这个意思吧
打开App,查看更多内容
随时随地看视频慕课网APP