jQuery
强仔fight
使我有洛阳二顷田,焉能配六国相印
展开
-
jQuery1选择器
jQuery选择器是jQuery库中非常重要的部分之一。 jQuery选择器的语法格式为: $(selector).methodName(); 多个jQuery操作可以以链的形式串起来$(selector).method1().Method2().Method3() ...原创 2019-02-22 14:19:08 · 167 阅读 · 0 评论 -
jQuery2元素操作
1.对元素内容的操作 ①文本内容 .text(" “) 设置内容 即使包含HTML代码,也将被认为是普通代码 .text() 获取内容 ②HTML内容 .html(” ") 设置内容 .html() 获取内容 2.对值的操作 .val(" ")设置值 .val() 获取值 对于radio按钮 val([0,1,0]) 认为第二个被选中 对于select option 复选框原创 2019-02-27 23:54:13 · 220 阅读 · 0 评论 -
jQuery3事件绑定移除&常用事件
window.onload() 在一个页面中只能用一次 以下事件加载等价 $(document).ready(function(){ }) $().ready(function(){ }) $(function(){ }) 例: <body> <button id="btn">添加一个标签原创 2019-02-28 16:56:10 · 694 阅读 · 0 评论 -
jQuery4动画效果
1.显示隐藏效果 <body> <div style="width=100px;height=100px;background-color=red;"></div> <button id="btn1">隐藏</butto原创 2019-02-28 21:02:13 · 209 阅读 · 0 评论 -
jQuery5ajax应用
1.ajax通讯原理 浏览器端: 0.创建xhr对象 1.初始化请求 2.发送请求 3.接收返回数据 4.处理数据 2.ajax应用 <body> <div id="box"></div> <button id="btn">按钮</button> </body> <scri原创 2019-03-01 00:02:00 · 227 阅读 · 0 评论