欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

JavaScript强化教程――编写第一个jQuery程序

程序员文章站 2022-05-01 12:22:28
...
JavaScript强化教程――编写第一个jQuery程序什么事JQ?
jQuery 是一个 JavaScript 库。
jQuery 极大地简化了 JavaScript 编程。
jQuery 很容易学习。
一个简单地JQ程序!
<html>
<head>
<script type="text/javascript" src="jquery.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>

以上就是JavaScript强化教程――编写第一个jQuery程序的内容,更多相关内容请关注PHP中文网(www.php.cn)!