javaweb项目中导入jquery

来源:互联网 发布:淘宝卖家最迟发货时间 编辑:程序博客网 时间:2024/05/30 23:05

导入jquery文件

<script type="text/javascript" src="js/jquery-1.7.2.js"></script><!--<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>-->

helloworld.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><script type="text/javascript" src="js/jquery-1.7.2.js"></script><!--<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>--><script type="text/javascript">$(document).ready(function(){  $("p").click(function(){  $(this).hide();  });});</script></head><body><p>If you click on me, I will disappear.</p></body></html> 


0 0
原创粉丝点击