JQuery Hover () method

Source: Internet
Author: User

1 $ ("P"). Hover (function () {2    $ ("P"). CSS ("Background-color", "yellow"); 3 },function () {4    $ ("P"). CSS ("Background-color", "pink"); 5 });
Definition and usage

The hover () method specifies the two functions to run when the mouse pointer hovers over the selected element.

method to trigger the MouseEnter and MouseLeave events.

Note: If you specify only one function, both MouseEnter and MouseLeave execute it.

Syntax $ ( selector). Hover ( infunction,outfunction)

Call:

$(). Hover( handlerin,)      

The same way:

$(). MouseOver().  Mouseout();       

Note: If only one function is specified, it will run on the mouseover and Mouseout events.

Call:

$(selector).  Hover(handlerinout)      

Equivalent to:

$(). On("MouseOver mouseout",);      

JQuery Hover () method

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.