Blogger Information
Blog 34
fans 0
comment 1
visits 24282
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
【4.2】PHP作业-jquery
51靓号网-专注QQ靓号十年精品
Original
598 people have browsed it

一.了解jquery的引入方式

jquery是一种快速、简洁的JavaScript框架,能够极大提高开发人员的效率

引入方式有两种:

1.本地引入:需要提前在官网(www.jquer.com)下载js插件,代码写入插件地址引入

实例应用

<script type="text/javascript" src="../jquery-3.3.1.js">
// 这是引用本地JS文件,这里不用写js代码
</script>

2.在线引入:试用在线资源,如百度的:http://cdn.code.baidu.com  中搜索“jq”

找到对应的 http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js 并引用

实例应用

<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js">
//这里引用公共的js文件,这里也不用写js代码
</script>


二.$(document).read()使用方式与简写

首先掌握jQ的基础使用方法:

jq使用思路:查询选择+操作

基本语法:$(selector).action()

中文意思:$( 选择器 ).操作( 参数/'属性','属性值')

● 美元符号定义jQuery

● 选择符(selector)“查询”和“查找” HTML 元素

● 后面的 action() 是执行对选中元素的操作

然后$(document).read()是一种



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