## 一、监听/取消事件
~~~
$('.box').on('click', selector, callback);
$('.box').off('click');
~~~
## 二、attr/prop属性添加/删除
~~~
// 自定义属性
$('.box').attr('data-url', 'www.demo.com');
$('.box').removeAttr('data-url');
// 内置属性
$('.box').prop('checked', true);
$('.box').removeProp('checked');
~~~
## 三、判断数据
~~~
// 判断是否是数字,返回true/false
$.isNumeric(1); // true
// 判断是否是数组,返回true/false
$.isArray([]); // true
// 判断元素是否在数组内,成功返回索引否则返回-1
$.inArray(1, [1,2,3]); // 0
// 判断是否是空对象,返回true/false
$.isEmptyObject({}); // true
~~~
## 四、ajax相关
~~~
// ajax参数式
$.ajax({
// 请求method方式
type: 'post',
// 请求地址
url: 'demo.php',
// 请求参数
data: {name: 'tom'},
// 返回数据类型
dataType: 'json',
// 发送前
beforeSend: function() {
// 显示loading
},
// 请求成功
success: function(res) {
console.log(res);
},
// 请求失败
error: function() {
console.log('%c 请求接口失败~', 'color: red');
},
// 请求完成(不管成功/失败)
complete: function() {
// 隐藏loading
}
});
// ajax链式
$.ajax({
type: 'get',
url: 'demo.php'
}).done(function(res) {
console.log(res);
}).fail(function() {
console.log('请求失败~');
});
// 取消ajax请求
var ajax1 = $.ajax({
type: 'get',
url: 'test.php',
success: function(res) {
console.log(res);
}
});
ajax1.abort();
// $.when方法,可用于所有异步请求完成
var ajax1 = $.ajax({
type: 'get',
url: 'test.php'
});
var ajax2 = $.ajax({
type: 'post',
url: 'test2.php'
});
var ajax3 = $.get('test3.php');
// then方式
$.when(ajax1, ajax2, ajax3).then(function(res1, res2, res3) {
console.log(res1[0]);
console.log(res2[0]);
console.log(res3[0]);
},function() {
console.log('%c 某个接口请求失败~', 'color: red');
});
// 链式方式
$.when(ajax1, ajax2, ajax3).done(function(res1, res2, res3) {
console.log(res1[0]);
console.log(res2[0]);
console.log(res3[0]);
}).fail(function() {
console.log('%c 某个接口请求失败~', 'color: red');
});
// ajax全局设置
$(document).ajaxSetup({
beforeSend: function() {},
dataFilter: function() {},
success: function() {},
error: function() {},
complete: function() {}
});
// $.Deferred方法
function req(url) {
var def = $.Deferred();
$.ajax({
type: 'get',
url: url,
success: function(res) {
def.resolve(res);
},
error: function() {
def.reject('请求失败~');
}
});
return def;
}
req('demo.php').then(function(res) {
console.log(res);
return req('demo.php2');
}).then(function(res) {
console.log(res);
}, function() {
console.log('请求失败~');
});
// 配合$.when
var $def = $.Deferred();
setTimeout(function() {
$def.resolve({name: 'tom'});
}, 1500);
$.when($def).then(function(res) {
console.log(res);
});
~~~
## 五、遍历数据
~~~
// 数组
$.each([1,2,3], function(val, index) {
console.log(val, index);
});
// 对象
$.each({name: 'tom', age: 23}, function(k, v) {
console.log(k, v);
});
// 数组对象
$.each([{name: 'tom', age: 23}, {name: 'jack', age: 16}], function(val, index) {
console.log(JSON.stringify(val), index);
});
~~~
## 六、设置/获取元素文本
~~~
<div class="box"><span>hello</span>world</div>
<script>
// 设置文本
$('.box').contents().filter(function() {
if(this.nodeType === 3) {
this.nodeValue = ',世界'
}
});
// 获取文本
var text = $('.box').contents().filter(function() {
return this.nodeType === 3;
}).text();
console.log(text); // ,世界
</script>
~~~
## 七、$.extend方法
~~~
// 合并对象
var config = $.extend({}, {name: 'tom', age: 23}, {age: 24, gender: 'm'});
console.log(config); // {name: "tom", age: 24, gender: "m"}
// 扩展jQuery对象本身
$.extend({
checkbox: function() {
console.log(1);
}
});
$.checkbox(); // 1
~~~
## 八、$.fn.extend扩展jquery元素方法
~~~
<div class="box"></div>
<script>
$.fn.extend({
addText: function(text) {
this.text(text); // 这个this是jquery element context
}
});
$('.box').addText('hello');
</script>
~~~
## 九、获取指定元素在集合中的索引
~~~
<div class="list">
<div class="item">a</div>
<div class="item2">1</div>
<div class="item">b</div>
<div class="item2">2</div>
<div class="item">c</div>
</div>
<script>
$('.list .item').click(function() {
console.log($(this).parent().find('.item').index($(this))); // 获取指定元素在集合中的索引
});
</script>
~~~
## 十、事件委托on监听scroll无效
~~~
$('body').on('scroll', '.box', function() { }); // 无效
// 需要这样才行
$('.box').on('scroll', function() { });
~~~
- 事件
- mouse缩放与拖动
- drag拖动
- 事件兼容
- animation/transition
- canvas
- 改变图片颜色
- html转图片
- 视频操作
- 图片缩放、水印、放大镜
- 虚线
- 圆环进度条
- 形状事件
- 圆角矩形
- 绘制注意
- arcTo与贝塞尔
- 椭圆及椭圆进度
- 五角星进度
- 常用图形
- 计算显示文本宽度
- 算法
- 几何算法
- 地图应用相关
- 运行符
- web安全
- 新窗口打开
- xss
- 分享交流
- php环境搭建及xhr交互
- node环境搭建及xhr交互
- node之socketio
- svg之入门介绍
- svg动画
- vue之搜索联想
- vue之登录和echarts
- vue之组件交互与slot
- vue之loading
- vue之上传进度
- webpack及cli
- 开发技巧
- 常用
- 移动端
- 错误处理
- 预加载
- 代理判断
- 数组扩展
- 对象扩展
- 字符串扩展
- 语音播报
- 收集
- 文章/日记
- 框架/库/插件
- 工具
- 学习网站
- 专业术语
- 正则
- 常用验证
- 方法基础
- es6扩展
- 深入实践
- 快捷使用
- html
- css
- http协议
- http
- https
- socket
- 地图/图表
- mapbox
- echarts
- arcgis
- MapView及事件
- 添加WMS/WMTS层
- 增删点线面
- 入门使用
- popup弹层
- 大数据处理
- 批量点
- 批量线
- 在线绘制
- GraphicLayer显示/隐藏
- 动态改变位置
- 去除版权信息
- 添加控件
- Symbol
- 自定义path标记
- 图片标记
- 文本标记
- 旋转
- UI
- 自定义
- 3D地图
- 创建实例
- basemap
- 底图切换
- 自定义底图
- 中心和范围
- pupup弹层更新
- 坐标转换
- 方向线
- leaflet
- amap
- 框架/类库/脚手架
- vue
- 常见问题
- 组件框架
- vue-router
- 命名视图
- url参数映射到prop
- sublime支持
- 随手记
- 常用功能
- threejs
- 常用效果
- 其他特效
- requirejs
- 简单使用
- jquery
- 方法扩展
- 使用笔记
- 组件扩展
- react
- 党见问题
- 学习笔记
- 学习笔记-进阶
- react-redux
- react-router
- redux
- 其他模块说明
- 组件框架
- sublime支持
- gulp
- 安装使用
- js压缩
- css压缩
- 组合使用
- copy文件
- 项目使用
- protobuf
- 入门
- layui
- 登录验证
- laydate
- 安装工具
- yarn
- reactNative
- 入门介绍
- vueNative
- 入门介绍
- 版本控制
- git常用
- git扩展
- git问题
- git其他
- git扩展2
- 编辑器
- vscode
- atom
- webstorm
- 插件
- clipboard
- 奇淫巧技
- js
- 个性打印
- css
- 滤镜效果
- 文本省略
- 当前色
- 新特性
- 花样边框效果
- 波纹效果
- 个性placeholder
- 伪元素内容
- 容器居中
- 知识点
- js
- 递归
- 沙箱
- 内存泄漏
- es6语法
- 变量介绍
- FileRead
- ajax
- web存储
- css
- rem布局