jquery优化02
缓存变量:DOM遍历是昂贵的,所以尽量将会重用的元素缓存。
$element = $('#element');
h = $element.height(); //缓存
$element.css('height',h-20);
如果你打算对DOM元素做大量操作(连续设置多个属性或css样式),建议首先分离元素然后在添加。
使用var与匈牙利命名法,且避免全局变量 ;
优化选择符;避免多个ID选择符
ajax:
- 使用相关函数:
$("#file").on("click","button",function() {
$.ajax("confirmation.html",{
data: {"confNum":1234},
success: function(res) {},
error: function(req,errorType,errorMessage) {},
timeout:3000,
beforeSend: function() {
$(".confirmation").addClass('is-loading');
},
complete: function() {
$(".confirmation").removeClass("is-loading");
}
})
}); - 提交表单:
$("form").on("submit",function(event) {
event.preventDefault(); //submit will reflash the page
var form = $(this);
$.ajax("/book", {
type: "POST",
data: form.serialize(), //use this;
success: function(result) {
form.remove();
$("#vacation").hide().html(result).fadeIn();
}
});
}); - 优化操作:
$.ajax('/test.html')
.done(function(res) {console.log(res,'done1');})
.fail(function(res) {console.log(res,'fail');}) - 要多个ajax共同使用的时候
$.when($.ajax("test1.html"),$.ajax("test2.html"))
.done(function(res) {console.log(res,'done');})
.fail(function(res) {console.log(res,'fail');}); //都成功才会执行done;返回第一个ajax的res;
写插件:
- html:
<div class="container">
<div class="col-sm-12 top">
<button id="all" class="btn btn-primary col-sm-offset-10 show-price">show all</button>
</div>
<div class="jumbotron col-sm-3 vacation" data-price="110">
<h4>Hawaiian Vaction</h4>
<button class="click btn btn-info">SHOE PRICE</button>
<p class="no-hide"><a href="#" class="remove-vacation">no thanks!</a></p>
</div> <div class="jumbotron col-sm-3 col-sm-offset-1 vacation" data-price="150">
<h4>European Getaway</h4>
<button class="click btn btn-info">SHOE PRICE</button>
<p class="no-hide"><a href="#" class="remove-vacation">no thanks!</a></p>
</div> <div class="jumbotron col-sm-3 col-sm-offset-1 vacation" data-price="90">
<h4>Visit Japan</h4>
<button class="click btn btn-info">SHOE PRICE</button>
<p class="no-hide"><a href="#" class="remove-vacation">no thanks!</a></p>
</div>
</div> - js:
$.fn.pricefy = function(options) {
this.each(function() {
//使用$.extend添加属性;setting为要操作的数据集合
var settings = $.extend({
days: 3,
vacation: $(this),
price: $(this).data("price")
},options);
var show = function() {
var details = $("<p>Book" + settings.days +"days for $" + (settings.days * settings.price)+ "</p>");
settings.vacation.find(".click").hide();
settings.vacation.append(details);
};
var remove = function() {
settings.vacation.hide().off(".pricefy");
};
settings.vacation.on("click.pricefy","button",show);
settings.vacation.on("show.pricefy",show);
settings.vacation.on("click.pricefy",".remove-vacation",remove);
})
}; $(function() {
$(".vacation").pricefy();
$(".show-price").on("click",function(event) {
event.preventDefault();
$(".vacation").trigger('show.pricefy');
});
});
jquery优化02的更多相关文章
- 新手必看的jQuery优化笔记十则
jQuery优化 1.简介 jQuery正在成为Web开发人员首选的JavaScript库,作为Web开发者,除了要了解语言和框架的应用技巧外,如何提升语言本身的性能也是开发人员应该思考的问题.文章就 ...
- jquery优化引发的思考
无意间看到jquery优化的一个细节让我觉得不可思议记录一下.仅仅只是换个地方代码就能提高数倍的效率,带给我的不是个仅是个小技巧,而是一总编程思想,技术大牛往往是在细节上体现. 通过缓存最小化选择操作 ...
- jquery优化28个建议
我一直在寻找有关jQuery性能优化方面的小窍门,能让我那臃肿的动态网页应用变得轻便些.找了很多文章后,我决定将最好最常用的一些优化性能的建议列出来.我也做了一个jQuery性能优化的简明样式表,你可 ...
- jquery优化轮播图2
继续优化 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF- ...
- jquery优化
选择器优化执行的速度 选择器 优先:id>元素>类 使用对象缓存:即使用变量来保存对象名,var $myDiv = $("#myDiv"):$myDiv.show(); ...
- jQuery优化性能的十种方法
1,总是从ID选择器开始继承 例如: <div id="content"> <form method="post" action=" ...
- ☀【jQuery 优化】jQuery基础教程(第3版)
jQuery代码优化:选择符篇 √ http://www.ituring.com.cn/article/377 jQuery代码优化:遍历篇 √ http://www.ituring.com.cn/a ...
- jQuery 学习02——效果:隐藏/显示、淡入淡出、滑动、动画、停止动画、Callback、链
jQuery 效果- 隐藏hide()和显示show() 语法: $(selector).hide(speed,callback);$(selector).show(speed,callback); ...
- jQuery总结02
1 如何搭建一个 jQuery 环境? 2 jQuery 对象与 DOM 对象一样吗?区别是什么? 3 jQuery选择器类型有哪些?
随机推荐
- javascript工厂模式
工厂模式 设计工厂模式的目的是为了创建对象.它通常在类或者类的静态方法实现,具有下列目标: 1.在创建相似对象是执行重复操作 2.在编译时不知道具体类型(类)的情况下,为工厂客户提供一种创建对象的接口 ...
- [Effective JavaScript 笔记]第47条:绝不要在Object.prototype中增加可枚举的属性
之前的几条都不断地重复着for...in循环,它便利好用,但又容易被原型污染.for...in循环最常见的用法是枚举字典中的元素.这里就是从侧面提出不要在共享的Object.prototype中增加可 ...
- Win10如何隐藏Windows Defender任务栏图标
导读 Windows 10 至发布以来就内置集成了 Windows Defender 安全防护应用,但有许多用户平常压根儿就没注意到它的存在.微软为了使安全防护功能更加明显,Windows 10 周年 ...
- PHP生成CSV文件
CSV文件的定义这里就不多做介绍了,难能可贵的是用Excel可以直接打开CSV文件.用PHP输出CSV文件本身很简单,但是大家如果有业务需求,下面的代码可以作为参考. $tableheader = a ...
- Ubuntu上安装gtk2.0不能安装的问题,“下列的软件包有不能满足的依赖关系”
zez@localhoss:~$ sudo apt-get install libgtk2.0-dev正在读取软件包列表... 完成正在分析软件包的依赖关系树 正在读取状态信息... 完成 ...
- Largest Divisible Subset
Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj) of ...
- Valid Perfect Square
Given a positive integer num, write a function which returns True if num is a perfect square else Fa ...
- 【leetcode】Letter Combinations of a Phone Number
Letter Combinations of a Phone Number Given a digit string, return all possible letter combinations ...
- Delphi经验总结(3)
------------------------------------------------------- ◇删掉程序自己的exe文件 procedure TForm1.FormClose(Sen ...
- WPF 将PPT,Word转成图片
在Office下,PowerPoint可以直接把每张幻灯片转成图片,而Word不能直接保存图片.所以只能通过先转换成xps文件,然后再转成图片. 一.PPT 保存为图片 /// <summary ...