为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

一人我编程累 2017-11-08 17:39:55
怎么把这段代码 $(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>
查看完整描述

1 回答

已采纳
?
慕勒0069038

TA贡献143条经验 获得超39个赞

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>


是这个意思吧


查看完整回答
反对 回复 2017-11-08
点击展开后面1
  • 1 回答
  • 0 关注
  • 2339 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信