Blogger Information
Blog 18
fans 0
comment 0
visits 9655
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
第13章 4_2jquery极速入门-作业
唐朝的博客
Original
521 people have browsed it

jquery的导入有2种:
1、本地导入
<script type="text/javascript" src ="../js/jquery-3.3.1.js"></script>
2、CDN导入(如百度静态资源库):
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>


实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>jQuery的引入方式</title>
</head>
<body>
<h1>点击测试</h1>
</body>
</html>

<!-- jQuery就是一个普通的js外部文件 -->
<!-- 1.本地引入 -->
<script type="text/javascript" src="../../js/jquery-3.3.1.js"></script>

<!-- 2.cdn在线引用 -->
<!-- <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script> -->
<script type="text/javascript">
    $('h1').click(function() {
        alert('引入成功');
    })
</script>

运行实例 »

点击 "运行实例" 按钮查看在线实例



Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!