一、jQuery简介
jQuery是一个兼容多浏览器的javascript库,核心理念是write less,do more(写得更少,做得更多)
二、安装
2.1、下载
下载地址:http://jquery.com/download/
2.2、引入
在页面头部加入
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>JQuery的引入</title> <script src="jquery/jquery-1.11.2.min.js"></script> </head>
时间: 2024-10-05 09:01:57