一、步骤
- 下载JQuery。
- 导入JQuery的js文件:导入min.js文件。
- 使用
直接上代码,注意引入jQuery到页面与事件处理的< script>是不同的。
<!DOCTYPE html>
<html lang="en">
<script src="js/jquery-3.3.1.min.js" type="text/javascript"></script>
<!--//引入jQuery库-->
<!--注意引入jQuery库与绑定事件的script是不同的。-->
<script tpye="text/javascript">
/*作者:czm
时间:1225
内容:click事件
*/
//$(function(){});为入口函数
/* $(function () {
});
*/
$(document).ready(function (e) {
$("#hi").click(function () {
alert("hello")
});
});
</script>
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div id="hi">Hello jQuery,我来了</div>
</body>
</html>
二、效果图如下所示
用firefox或者谷歌浏览器自带的调试插件调试。