Home Web Front-end JS Tutorial When extending the Jquery plug-in to handle mouseover, style flickering occurs when there are child elements inside_jquery

When extending the Jquery plug-in to handle mouseover, style flickering occurs when there are child elements inside_jquery

May 16, 2016 pm 05:58 PM
child element

The solution is as follows:
First, determine whether the current node of the event, that is, jquery's currentTarget, is included in the target, that is, the following extension $.containsNode.
Then, in the mouseover and mouseout events when hover is called, it is judged whether the currentTarget is included in the target, that is, $.fn.fhover extension
The following is the relevant code:
Copy code The code is as follows:

$.containsNode = function(parentNode, childNode) {
if (parentNode.contains) {
return parentNode != childNode && parentNode.contains(childNode);
} else {
return !!(parentNode.compareDocumentPosition(childNode) & 16);
}
}
$ .fn.fhover = function(over, out) {
this.hover(function(e) {
if ($.containsNode(e.target, e.currentTarget)) {
return;
}
over.call(this, e);
}, function(e) {
if ($.containsNode(e.target, e.currentTarget)) {
return;
}
out.call(this, e);
});
return this;
}
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to remove last child element in jQuery? How to remove last child element in jQuery? Feb 19, 2024 pm 09:40 PM

jQuery is a popular JavaScript library used to simplify many tasks in web development, including DOM manipulation. In web development, it is often necessary to add, delete, modify and check DOM elements, and deleting the last sub-element is also a common requirement. This article will introduce several methods to delete the last child element using jQuery. Method 1: Use the last() method. jQuery provides the last() method, which can select the last element of the current query result. By combining this

Understand the event bubbling mechanism: Why does a click on a child element affect the event of the parent element? Understand the event bubbling mechanism: Why does a click on a child element affect the event of the parent element? Jan 13, 2024 pm 02:55 PM

Understanding event bubbling: Why does a click on a child element trigger an event on the parent element? Event bubbling means that in a nested element structure, when a child element triggers an event, the event will be passed to the parent element layer by layer like bubbling, until the outermost parent element. This mechanism allows events on child elements to be propagated throughout the element tree and trigger all related elements in turn. To better understand event bubbling, let's look at a specific example code. HTML code: <divid="parent&q

Use the :nth-child(n+3) pseudo-class selector to select the style of child elements whose position is greater than or equal to 3 Use the :nth-child(n+3) pseudo-class selector to select the style of child elements whose position is greater than or equal to 3 Nov 20, 2023 am 11:20 AM

Use the :nth-child(n+3) pseudo-class selector to select the style of child elements whose position is greater than or equal to 3. The specific code example is as follows: HTML code: &lt;divid="container"&gt;&lt;divclass="item"&gt ;First child element&lt;/div&gt;&lt;divclass="item"&

Remove last child element of element using jQuery Remove last child element of element using jQuery Feb 26, 2024 pm 12:39 PM

How to remove the last child element using jQuery? In front-end development, we often encounter operations that require adding, deleting, modifying, and checking page elements. Among them, deleting the last child element is a common requirement. This article will introduce how to use jQuery to delete the last child element, with specific code examples. First, we need to introduce the jQuery library into the page to ensure that its functions can be used. Add the following code to your HTML file: &lt

CSS styles for selecting child elements at specific positions using the :nth-child pseudo-class selector CSS styles for selecting child elements at specific positions using the :nth-child pseudo-class selector Nov 20, 2023 pm 04:43 PM

CSS styles for selecting child elements at specific positions using the :nth-child pseudo-class selector. In CSS, pseudo-class selectors are used to select elements in a specific state in an HTML document. In addition to common pseudo-class selectors such as :hover and :active, there is also a very useful pseudo-class selector called :nth-child, which allows us to select child elements at specific positions. The syntax of the :nth-child pseudo-class selector is as follows: parent element:nth-child(n) where the parent element represents the parent element

How to use jQuery to determine whether an element contains child elements How to use jQuery to determine whether an element contains child elements Feb 28, 2024 am 11:03 AM

How to use jQuery to determine whether an element contains child elements. In web development, we often encounter situations where we need to determine whether an element contains child elements. This function can be achieved very easily using jQuery. In this article, we will introduce how to use jQuery to determine whether an element contains child elements, and give specific code examples. In jQuery, you can use the children() method to select all direct child elements of a specified element. If an element contains child elements, use childr

jQuery implements the function of determining whether an element has child elements jQuery implements the function of determining whether an element has child elements Feb 28, 2024 pm 12:54 PM

jQuery is a JavaScript library widely used in front-end development. It provides a simple and powerful API that can easily manipulate DOM elements. In actual development, sometimes we need to determine whether an element contains child elements. In this case, we need to use jQuery to achieve this. To determine whether an element has child elements, we can use the method provided by jQuery. Here is a sample code that demonstrates how to use jQuery to determine whether an element contains child elements: &lt

jQuery example: How to delete the last child element using jQuery? jQuery example: How to delete the last child element using jQuery? Feb 20, 2024 pm 07:45 PM

Title: jQuery Example: How to delete the last child element using jQuery? In web development, we often encounter situations where we need to manipulate DOM elements through JavaScript. As a widely used JavaScript library, jQuery provides many convenient methods to manipulate DOM elements. This article will use an example to introduce how to use jQuery to delete the last child element, and provide detailed code examples. First, we need to introduce it in the HTML file

See all articles