怎么把这段代码 $(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>
是这个意思吧
- 1 回答
- 0 关注
- 2339 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消