Home > Web Front-end > JS Tutorial > body text

How to determine whether to bind an event in jquery

藏色散人
Release: 2022-12-30 11:11:23
Original
2572 people have browsed it

How jquery determines whether an event is bound: First create a js sample file; then use the statement "jQuery.data(elem,"events")[type]" to determine whether an event has been bound to the element. .

How to determine whether to bind an event in jquery

The operating environment of this tutorial: windows7 system, jquery1.10.0 version, Dell G3 computer.

Recommended: jQuery video tutorial

jquery determines whether an element is bound to an event

determines whether an event has been bound to an element Use the following statement

jQuery.data(elem,"events")[type] //老版本也能用 
$(elem).data("events")[type] //1.2.3以后才能用
Copy after login

to return the value:

An Object, which can be traversed using for in. or undefined.

Parameters:

elem is a DOM object, type is the event type.

Example:

Determine whether the click event is bound to the element with id foo

if( $("#foo").data("events")["click"] ){ 
    //your code 
}
Copy after login

The above is the detailed content of How to determine whether to bind an event in jquery. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!