jquery-tips-everyone-should-know

jquery-tips-everyone-should-know

jQuery实用技巧大全 提升开发效率与代码质量

该项目收录了大量实用的jQuery技巧,涵盖选择器缓存、事件绑定、动画效果和AJAX操作等多个方面。这些技巧既可优化代码性能,又能提高开发效率,适合各层级的jQuery开发者学习参考。项目内容从基础用法到高级技巧,系统全面,为开发者提供了众多有价值的建议和最佳实践。

jQueryJavaScript前端开发DOM操作事件处理Github开源项目

jQuery Tips Everyone Should Know Awesome

A collection of simple tips to help up your jQuery game.

For other great lists check out @sindresorhus's curated list of awesome lists.

Table of Contents

Tips

  1. Use noConflict()
  2. Checking If jQuery Loaded
  3. Check Whether an Element Exists
  4. Use .on() Binding Instead of .click()
  5. Back to Top Button
  6. Preload Images
  7. Checking If Images Are Loaded
  8. Fix Broken Images Automatically
  9. Post a Form with AJAX
  10. Toggle Classes on Hover
  11. Disabling Input Fields
  12. Stop the Loading of Links
  13. Cache jQuery Selectors
  14. Toggle Fade/Slide
  15. Simple Accordion
  16. Make Two Divs the Same Height
  17. Open External Links in New Tab/Window
  18. Find Element By Text
  19. Trigger on Visibility Change
  20. AJAX Call Error Handling
  21. Chain Plugin Calls
  22. Sort List Items Alphabetically
  23. Disable Right-Click

Use noConflict()

The $ alias used by jQuery is also used by other JavaScript libraries. To ensure that jQuery doesn't conflict with the $ object of different libraries, use the noConflict() method at the start of the document:

jQuery.noConflict();

Now you'll reference the jQuery object using the jQuery variable name instead of $ (e.g., jQuery('div p').hide()). If you have multiple versions of jQuery on the same page (not recommended), you can use noConflict() to set an alias to a specific version:

let $x = jQuery.noConflict();

<sup>back to table of contents</sup>

Checking If jQuery Loaded

Before you can do anything with jQuery you first need to make certain it has loaded:

if (typeof jQuery == 'undefined') { console.log('jQuery hasn\'t loaded'); } else { console.log('jQuery has loaded'); }

Now you're off...

<sup>back to table of contents</sup>

Check Whether an Element Exists

Prior using a HTML element you need to ensure it's part of DOM.

if ($("#selector").length) { //do something with element }

<sup>back to table of contents</sup>

Use .on() Binding Instead of .click()

Using .on() gives you several advantages over using .click(), such as the ability to add multiple events...

.on('click tap hover')

...a binding applies to dynamically created elements, as well (there's no need to manually bind every single element dynamically added to a DOM element)...

...and the possibility to set a namespace:

.on('click.menuOpening')

Namespaces give you the power to unbind a specific event (e.g., .off('click.menuOpening')).

<sup>back to table of contents</sup>

Back to Top Button

By using the animate and scrollTop methods in jQuery you don't need a plugin to create a simple scroll-to-top animation:

// Back to top $('.container').on('click', '.back-to-top', function (e) { e.preventDefault(); $('html, body').animate({scrollTop: 0}, 800); });
<!-- Create an anchor tag --> <div class="container"> <a href="#" class="back-to-top">Back to top</a> </div>

Changing the scrollTop value changes where you wants the scrollbar to land. All you're really doing is animating the body of the document throughout the course of 800 milliseconds until it scrolls to the top of the document.

[!NOTE] Watch for some buggy behavior with scrollTop.

<sup>back to table of contents</sup>

Preload Images

If your web page uses a lot of images that aren't visible initially (e.g., on hover) it makes sense to preload them:

$.preloadImages = function () { for (var i = 0; i < arguments.length; i++) { $('<img>').attr('src', arguments[i]); } }; $.preloadImages('img/hover-on.png', 'img/hover-off.png');

<sup>back to table of contents</sup>

Checking If Images Are Loaded

Sometimes you might need to check if your images have fully loaded in order to continue on with your scripts:

$('img').on('load', function () { console.log('image load successful'); });

You can also check if one particular image has loaded by replacing the <img> tag with an ID or class.

<sup>back to table of contents</sup>

Fix Broken Images Automatically

If you happen to find broken image links on your site replacing them one by one can be a pain. This simple piece of code can save a lot of headaches:

$('img').on('error', function () { if(!$(this).hasClass('broken-image')) { $(this).prop('src', 'img/broken.png').addClass('broken-image'); } });

Alternatively, if you wish to hide broken images this snippet will take care of that for:

$('img').on('error', function () { $(this).hide(); });

<sup>back to table of contents</sup>

Post a Form with AJAX

jQuery AJAX methods are a common way to request text, HTML, XML, or JSON. If you wanted to send a form via AJAX you could collect the user inputs via the val() method:

$.post('sign_up.php', { user_name: $('input[name=user_name]').val(), email: $('input[name=email]').val(), password: $('input[name=password]').val(), });

But all of those val() calls are expensive and using .val() on <textarea> elements will strip carriage return characters from the browser-reported value. A better way of collecting user inputs is using the serialize() function which collects them as a string:

$.post('sign_up', $('#sign-up-form').serialize());

<sup>back to table of contents</sup>

Toggle Classes on Hover

Let's say you want to change the visual of a clickable element on your page when a user hovers over it. You can add a class to your element when the user is hovering; when the user stops hovering removes the class:

$('.btn').on('hover', function () { $(this).addClass('hover'); }, function () { $(this).removeClass('hover'); });

You need to add the necessary CSS. If you want an even simpler way use the toggleClass method:

$('.btn').on('hover', function () { $(this).toggleClass('hover'); });

[!NOTE] CSS may be a faster solution in this case but it's still worthwhile to know this.

<sup>back to table of contents</sup>

Disabling Input Fields

At times you may want the submit button of a form or one of its text inputs to be disabled until the user has performed a certain action (e.g., checking the "I've read the terms" checkbox). Add the disabled attribute to your input so you can enable it when you want:

$('input[type="submit"]').prop('disabled', true);

All you need to do is run the prop method again on the input, but set the value of disabled to false:

$('input[type="submit"]').prop('disabled', false);

<sup>back to table of contents</sup>

Stop the Loading of Links

Sometimes you don't want links to go to a certain web page nor reload the page; you might want them to do something else like trigger another script. This will do the trick of preventing the default action:

$('a.no-link').on('click', function (e) { e.preventDefault(); });

<sup>back to table of contents</sup>

Cache jQuery Selectors

Think of how many times you write the same selector over and over again in any project. Every $('.element') selector has to search the entire DOM each time, regardless if that selector had previously run. Instead you can run the selector once and store the results in a variable:

var blocks = $('#blocks').find('li');

Now you can use the blocks variable wherever you want without having to search the DOM every time:

$('#hideBlocks').on('click', function () { blocks.fadeOut(); }); $('#showBlocks').on('click', function () { blocks.fadeIn(); });

Caching jQuery selectors is a good performance gain.

<sup>back to table of contents</sup>

Toggle Fade/Slide

Sliding and fading are common in animations with jQuery. You might want to show an element when a user clicks something, which makes the fadeIn and slideDown methods perfect, but if you want that element to appear on the first click and then disappear on the second, this will work fine:

// Fade $('.btn').on('click', function () { $('.element').fadeToggle('slow'); }); // Toggle $('.btn').on('click', function () { $('.element').slideToggle('slow'); });

<sup>back to table of contents</sup>

Simple Accordion

This is a simple method for a quick accordion:

// Close all panels $('#accordion').find('.content').hide(); // Accordion $('#accordion').find('.accordion-header').on('click', function () { var next = $(this).next(); next.slideToggle('fast'); $('.content').not(next).slideUp('fast'); return false; });

By adding this script all you really need to do on your web page is the necessary HTML to get this working.

<sup>back to table of contents</sup>

Make Two Divs the Same Height

Sometimes you'll want two divs to have the same height no matter what content they have in them:

$('.div').css('min-height', $('.main-div').height());

This example sets the min-height which means that it can be bigger than the main div but never smaller. However, a more flexible method would be to loop over a set of elements and set height to the height of the tallest element:

var $columns = $('.column'); var height = 0; $columns.each(function () { if ($(this).height() > height) { height = $(this).height(); } }); $columns.height(height);

If you want all columns to have the same height:

var $rows = $('.same-height-columns'); $rows.each(function () { $(this).find('.column').height($(this).height()); });

[!NOTE] This can be done several ways in CSS but depending on what your needs are, knowing how to do this in jQuery is handy.

<sup>back to table of contents</sup>

Open External Links in New Tab/Window

Open external links in a new browser tab or window and ensure links on the same origin open in the same tab or window:

$('a[href^="http"]').attr('target', '_blank'); $('a[href^="//"]').attr('target', '_blank'); $('a[href^="' + window.location.origin + '"]').attr('target', '_self');

<sup>back to table of contents</sup>

Find Element By Text

By using the contains() selector in jQuery you can find text in content of an element. If text doesn't exists, that element will be hidden:

var search = $('#search').val(); $('div:not(:contains("' + search + '"))').hide();

<sup>back to table of contents</sup>

Trigger on Visibility Change

Trigger JavaScript when the user is no longer focusing on a tab or refocuses on a tab:

$(document).on('visibilitychange', function (e) { if (e.target.visibilityState === 'visible') { console.log('Tab is now in view!'); } else if (e.target.visibilityState === 'hidden') { console.log('Tab is now hidden!'); } });

<sup>back to table of contents</sup>

AJAX Call Error Handling

When an AJAX call returns a 404 or 500 error, the error handler will be executed. If the handler isn't defined, other jQuery code might not work as intended. To define a global AJAX error handler:

$(document).on('ajaxError', function (e, xhr, settings, error) { console.log(error); });

<sup>back to table of contents</sup>

Chain Plugin Calls

jQuery allows for the "chaining" of plugin method calls to mitigate the process of repeatedly querying the DOM and creating multiple jQuery objects. Let's say the following snippet represents your plugin method calls:

$('#elem').show(); $('#elem').html('bla'); $('#elem').otherStuff();

This could be vastly improved by using chaining:

$('#elem') .show() .html('bla') .otherStuff();

An alternative is to cache the element in a variable (prefixed with $):

var $elem = $('#elem'); $elem.hide(); $elem.html('bla'); $elem.otherStuff();

Both chaining and caching methods in jQuery are best practices that lead to shorter and faster code.

<sup>back to table of contents</sup>

Sort List Items Alphabetically

Let's say you end up with too many items in a list. Maybe the content is produced by a CMS and you want to order them alphabetically:

var ul = $('#list'), lis = $('li', ul).get(); lis.sort(function (a, b) { return ($(a).text().toUpperCase() < $(b).text().toUpperCase()) ? -1 : 1; }); ul.append(lis);

There you go!

<sup>back to table of contents</sup>

Disable Right-Click

If you want to disable right-click, you can do it for an entire page...

$(document).ready(function () { $(document).bind('contextmenu', function (e) { return false; }) })

...and you can also do the same for a specific element:

$(document).ready(function () { $('#submit').bind('contextmenu', function (e) { return false; }) })

<sup>back to table of contents</sup>

Support

Current versions of Chrome, Firefox, Safari, Opera, Edge, and IE11.

<sup>back to table of contents</sup>

Translations

<sup>[back to table of

编辑推荐精选

博思AIPPT

博思AIPPT

AI一键生成PPT,就用博思AIPPT!

博思AIPPT,新一代的AI生成PPT平台,支持智能生成PPT、AI美化PPT、文本&链接生成PPT、导入Word/PDF/Markdown文档生成PPT等,内置海量精美PPT模板,涵盖商务、教育、科技等不同风格,同时针对每个页面提供多种版式,一键自适应切换,完美适配各种办公场景。

热门AI工具AI办公办公工具智能排版AI生成PPT博思AIPPT海量精品模板AI创作
潮际好麦

潮际好麦

AI赋能电商视觉革命,一站式智能商拍平台

潮际好麦深耕服装行业,是国内AI试衣效果最好的软件。使用先进AIGC能力为电商卖家批量提供优质的、低成本的商拍图。合作品牌有Shein、Lazada、安踏、百丽等65个国内外头部品牌,以及国内10万+淘宝、天猫、京东等主流平台的品牌商家,为卖家节省将近85%的出图成本,提升约3倍出图效率,让品牌能够快速上架。

iTerms

iTerms

企业专属的AI法律顾问

iTerms是法大大集团旗下法律子品牌,基于最先进的大语言模型(LLM)、专业的法律知识库和强大的智能体架构,帮助企业扫清合规障碍,筑牢风控防线,成为您企业专属的AI法律顾问。

SimilarWeb流量提升

SimilarWeb流量提升

稳定高效的流量提升解决方案,助力品牌曝光

稳定高效的流量提升解决方案,助力品牌曝光

Sora2视频免费生成

Sora2视频免费生成

最新版Sora2模型免费使用,一键生成无水印视频

最新版Sora2模型免费使用,一键生成无水印视频

Transly

Transly

实时语音翻译/同声传译工具

Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。

讯飞绘文

讯飞绘文

选题、配图、成文,一站式创作,让内容运营更高效

讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。

AI助手热门AI工具AI创作AI辅助写作讯飞绘文内容运营个性化文章多平台分发
TRAE编程

TRAE编程

AI辅助编程,代码自动修复

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

热门AI工具生产力协作转型TraeAI IDE
商汤小浣熊

商汤小浣熊

最强AI数据分析助手

小浣熊家族Raccoon,您的AI智能助手,致力于通过先进的人工智能技术,为用户提供高效、便捷的智能服务。无论是日常咨询还是专业问题解答,小浣熊都能以快速、准确的响应满足您的需求,让您的生活更加智能便捷。

imini AI

imini AI

像人一样思考的AI智能体

imini 是一款超级AI智能体,能根据人类指令,自主思考、自主完成、并且交付结果的AI智能体。

下拉加载更多