书签 分享 收藏 举报 版权申诉 / 5

类型jquery常用小功能总结讲解.docx

  • 文档编号:26247221
  • 上传时间:2023-06-17
  • 格式:DOCX
  • 页数:5
  • 大小:17.09KB
});

 12.验证元素是否为空

$(document).ready(function(){if($('#id').html()){//dosomething}});

 13.替换元素

$(document).ready(function(){$('#id').replaceWith('

Ihavebeenreplaced
');});

14.jQuery延时加载功能

$(document).ready(function(){window.setTimeout(function(){//dosomething},1000);});

 15.移除单词功能

$(document).ready(function(){varel=$('#id');el.html(el.html().replace(/word/ig,""));});

 16.验证元素是否存在于jquery对象集合中

$(document).ready(function(){if($('#id').length){//dosomething}});

 17.使整个DIV可点击

$(document).ready(function(){$("div").click(function(){//gettheurlfromhrefattributeandlaunchtheurlwindow.location=$(this).find("a").attr("href");returnfalse;});//howtouse

home
});

 18.ID与Class之间转换.

当改变Window大小时,在ID与Class之间切换

$(document).ready(function(){functioncheckWindowSize(){if($(window).width()>1200){$('body').addClass('large');}else{$('body').removeClass('large');}}$(window).resize(checkWindowSize);});

 19.克隆对象

$(document).ready(function(){varcloned=$('#id').clone();//howtouse

});

 20.使元素居屏幕中间位置

$(document).ready(function(){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");returnthis;}$("#id").center();});

 21.写自己的选择器

$(document).ready(function(){$.extend($.expr[':

'],{moreThen1000px:

function(a){return$(a).width()>1000;}});$('.box:

moreThen1000px').click(function(){//creatingasimplejsalertboxalert('Theelementthatyouhaveclickedisover1000pixelswide');});});

 22.统计元素个数

$(document).ready(function(){$("p").size();});

 23.使用自己的Bullets

$(document).ready(function(){$("ul").addClass("Replaced");$("ul>li").prepend("‒");//howtouseul.Replaced{list-style:

none;}});

 24.引用Google主机上的Jquery类库

//Example1google.load("jquery","1.11.1");google.setOnLoadCallback(function(){//dosomething});

 25.禁用Jquery(动画)效果

$(document).ready(function(){jQuery.fx.off=true;});

 26.与其他Javascript类库冲突解决方案

$(document).ready(function(){var$jq=jQuery.noConflict();$jq('#id').show();});

配套讲稿:

如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。

特殊限制:

部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。

关 键  词:
jquery 常用 功能 总结 讲解
提示  冰豆网所有资源均是用户自行上传分享,仅供网友学习交流,未经上传用户书面授权,请勿作他用。
关于本文
本文标题:jquery常用小功能总结讲解.docx
链接地址:https://www.bdocx.com/doc/26247221.html
关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

copyright@ 2008-2022 冰点文档网站版权所有

经营许可证编号:鄂ICP备2022015515号-1

收起
展开