首页 >

七个不允许错过的jQuery小技巧【jquery】

web前端|js教程七个不允许错过的jQuery小技巧【jquery】
jQuery,技巧
web前端-js教程
jQuery是一款轻量级的JavaScript库,是最流行的客户端HTML脚本之一,它在WEB设计师和开发者中非常的有名,并且有非常多有用的插件和技术。
安卓第一行代码源码,vscode ssh端口,ubuntu 删除,ui和tomcat,sqlite多表数据查询,织梦bshare分享插件下载,fis3和vue前端框架,供应链反欺诈爬虫,php 钉钉,合生元中国区seo,纯html5 网站,公司网页设计代码,模板新闻lzw
联网收银系统源码,ubuntu怎样设置网卡,tomcat7和jdk8,爬虫主要设计思想,php将字符转换成数字,seo如何设置lzw
本文我们将为大家分享一些jQuery小技巧:
全微时代人脉管家源码,ubuntu 系统桌面美化,本地连接打开tomcat,爬虫俱乐部课程,php学些什么,seo专员 seo主管lzw
A、在新窗口打开链接

用下面的代码,你点击链接即可在新窗口打开:

$(document).ready(function() {  //select all anchor tags that have http in the href  //and apply the target=_blank  $("a[href^='http']").attr('target','_blank');});
B、设置等高的列

应用下面的代码,可以使得你的WEB应用每一列高度都想等:

First Line

Second Line

Third Line

Column Two

$(document).ready(function() { equalHeight('.equalHeight');});//global variable, this will store the highest height valuevar maxHeight = 0;function equalHeight(col) { //Get all the element with class = col col = $(col); //Loop all the col col.each(function() { //Store the highest value if ($(this).height() > maxHeight) { maxHeight = $(this).height(); } }); //Set the height col.height(maxHeight);}
C、jQuery预加载图像

这个小技巧可以提升页面加载图片的速度:

jQuery.preloadImagesInWebPage = function() {  for (var ctr = 0; ctr & lt; arguments.length; ctr++) {    jQuery("").attr("src", arguments[ctr]);  }}// 使用方法:$.preloadImages("image1.jpg" alt="七个不允许错过的jQuery小技巧【jquery】" title="七个不允许错过的jQuery小技巧【jquery】", "image2.jpg", "image3.jpg");// 检查图片是否被加载$('#imageObject').attr('src', 'image1.jpg').load(function() {  alert('The image has been loaded…');});
D、禁用鼠标右键

$(document).ready(function() {  //catch the right-click context menu  $(document).bind("contextmenu", function(e) {    //warning prompt - optional    alert("No right-clicking!");    //delete the default context menu    return false;  });});
E、设定计时器

$(document).ready(function() {  window.setTimeout(function() {    // some code  }, 500);});
F、计算子元素的个数

//jQuery code to count child elements $("#foo > div").size()alert($("#foo > div").size())
G、把元素定位到页面中间

jQuery.fn.center = function() { this.css("position", "absolute"); this.css("top", ($(window).height() - this.height()) / 2 + $(window).scrollTop() + "px"); this.css("left", ($(window).width() - this.width()) / 2 + $(window).scrollLeft() + "px"); return this;}//Use the above function as:$('#foo').center();
读到这里的朋友就知道你没有错过学习的机会,把这些小技巧积累起来,一定会帮助大家设计出有创意和精美的Web页面。


  • 暂无相关文章
  • Posted in 未分类