jQuery 简介

2017-09-15  本文已影响0人  moralok

2017-09-15
摘抄自W3school-jQuery 简介
希望帮助自己系统地打好基础,也能在做笔记的同时添加一些自己额外的收获。

jQuery 库可以通过一行简单的标记被添加到网页中

jQuery 库 - 特性

jQuery 是一个 JavaScript 函数库
jQuery 库包含以下特性:

向你的页面添加 jQuery 库

jQuery 库位于一个 JavaScript 文件中,其中包含了所有的 jQuery 函数。
可以通过下面的标记把 jQuery 添加到网页中:

<head>
<script type="text/javascript" src="jquery.js"></script>
</head>

注意:<script>标签应该位于页面的<head>部分

基础jQuery实例

本例演示了jQuery的hide()函数,隐藏了HTML文档中所有的 <p> 元素

<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("p").hide();
});
});
</script>
</head>

<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button type="button">Click me</button>
</body>
</html>

库的替代

Google 和 Microsoft 对 jQuery 的支持都很好
如果不愿意在自己的计算机上存放 jQuery 库,那么可以从 Google 或 Microsoft 加载 CDN jQuery 核心文件
使用 Google 的CDN

<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs
/jquery/1.4.0/jquery.min.js"></script>
</head>

使用 Microsoft 的CDN

<head>
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery
/jquery-1.4.min.js"></script>
</head>
上一篇下一篇

猜你喜欢

热点阅读