Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use hover in javascript

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly introduces how to use hover in javascript. It is very detailed and has a certain reference value. Friends who are interested must finish it!

In JavaScript, the hover () method is used to specify the function to run when the mouse pointer hovers over the selected element, either when the pointer is over the element or when the pointer leaves, with the syntax of "$(element) .hover (inFunction,outFunction)".

The operating environment of this tutorial: windows10 system, javascript1.8.5 version, Dell G3 computer.

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

Method triggers mouseenter and mouseleave events.

Note: if you specify only one function, both mouseenter and mouseleave execute it.

The syntax is:

$(selector) .hover (inFunction,outFunction)

Call:

(selector) .hover (handlerIn, handlerOut)

It is equivalent to the following ways:

$(selector). Mouseenter (handlerIn). Mouseleave (handlerOut)

Note: if only one function is specified, it will run on the mouseenter and mouseleave events.

Call:

$(selector) .hover (handlerInOut)

Equivalent to:

(selector) .on ("mouseenter mouseleave", handlerInOut)

Examples are as follows:

(document) .ready (function () {$("p") .hover (function () {$("p") .css ("background-color", "yellow");}, function () {$("p") .css ("background-color", "pink");});})

Move the mouse to the paragraph.

Output result:

The above is all the contents of the article "how to use hover in javascript". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report