


Customize a jquery plug-in [when the mouse hovers, a description label appears]_jquery
I have been learning jquery recently. After watching it for a few days, I decided to make a small thing to practice my skills. You can check it out for entry-level ones.
Let’s first look at the functions of this little thing below. It’s useful if you have a model.
Function: When your mouse hovers over your html element, it will display a help descriptive label.
Rendering:
Original:
When your mouse is hovering over 'Click Me 1':
When your mouse is hovering over 'textbox':
After looking at the renderings, if you are interested, take a closer look at the code. The code has comments
html code:
html code description:
The underlined ones are the parameters passed in when calling the jquery plug-in.
The ones in red are the places you should pay attention to matching
Parameter description:
shelpText: "default help text", //The document where you want to display the label
bgcolor: "red", //label's background color
ftcolor: "yellow", //label's foreground color
width: "200px", //label's width
tempLeft: "15", //label relative to the mouse The left value of the position
tempTop: "15" //The top value of the label relative to the position of the mouse
jquery code[a1.query]
/*
* HelpTextFn
* Copyright (c) 2011 yongbin zhang http://www.cnblogs.com/2814/
* Date: 2011-6-27
* When you hover the mouse over your html element, it will display a help descriptive label
*/
//The following code cannot be changed
//Comments are code descriptions
/*
If you want to define a jquery plug-in yourself, the general framework is:
(function ($) {
$.fn.HelpTextFn = function (options) { //What needs to be changed is HelpTextFn, this It is the name of your jquery function [you must use this name when you want to call this function in your html],
//No other changes are needed.
var defaults = { // var defaults{This is the default value of the parameter of your function}
helpText: "default help text", //You want to display the document of label
bgcolor: "red", //The background color of label
ftcolor: "yellow", //label's foreground color
width: "200px", //label's width
tempLeft: "15", //label's left value relative to the mouse position
tempTop: "15" //The top value of the label relative to the mouse position
}
var options = $.extend(defaults, options); //This sentence is dead, it means Say, if you call this plug-in in HTML, if there is no value for the parameter passed in,
//Then I will use the parameter defined in defalut, otherwise I will use the value of the parameter you passed in, [ Note]: If you want to use parameters below,
//You have to use [options.parameter name] such as: options.helpText
$(this).mousemove(function (e) { //Add this mousemove event, that is, which html element calls my plug-in, then I will add mousemove event to it
});
$(this).mouseleave(function () { //Add this mouseleave Event, that is, which html element calls my plug-in, then I will add the mouseleave event to it
});
};
})(jQuery); //This sentence is fixed
*/
(function ($) {
$.fn.HelpTextFn = function (options) {//
var defaults = {
helpText: "default help text",
bgcolor: "red",
ftcolor: "yellow",
width: "200px",
tempLeft: "15",
tempTop: "15"
}
var options = $.extend(defaults, options);
var linkDivId = $(this).attr("id");
$(this).mousemove(function (e) {
if ($ ("#linkDiv" linkDivId)) {
$("#linkDiv" linkDivId).remove();
}
var xx = e.originalEvent.x || e.originalEvent.layerX || 0 ;
var yy = e.originalEvent.y || e.originalEvent.layerY || 0;
var left = xx parseInt(options.tempLeft);
var top = yy parseInt(options.tempTop) ;
$("#" linkDivId).after(" ");
$ ("#linkDiv" linkDivId).show();
});
$(this).mouseleave(function () {
$("#linkDiv" linkDivId).remove();
});
};
})(jQuery);

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

Node.js excels at efficient I/O, largely thanks to streams. Streams process data incrementally, avoiding memory overload—ideal for large files, network tasks, and real-time applications. Combining streams with TypeScript's type safety creates a powe

The differences in performance and efficiency between Python and JavaScript are mainly reflected in: 1) As an interpreted language, Python runs slowly but has high development efficiency and is suitable for rapid prototype development; 2) JavaScript is limited to single thread in the browser, but multi-threading and asynchronous I/O can be used to improve performance in Node.js, and both have advantages in actual projects.

JavaScript originated in 1995 and was created by Brandon Ike, and realized the language into C. 1.C language provides high performance and system-level programming capabilities for JavaScript. 2. JavaScript's memory management and performance optimization rely on C language. 3. The cross-platform feature of C language helps JavaScript run efficiently on different operating systems.

JavaScript runs in browsers and Node.js environments and relies on the JavaScript engine to parse and execute code. 1) Generate abstract syntax tree (AST) in the parsing stage; 2) convert AST into bytecode or machine code in the compilation stage; 3) execute the compiled code in the execution stage.

The future trends of Python and JavaScript include: 1. Python will consolidate its position in the fields of scientific computing and AI, 2. JavaScript will promote the development of web technology, 3. Cross-platform development will become a hot topic, and 4. Performance optimization will be the focus. Both will continue to expand application scenarios in their respective fields and make more breakthroughs in performance.

Both Python and JavaScript's choices in development environments are important. 1) Python's development environment includes PyCharm, JupyterNotebook and Anaconda, which are suitable for data science and rapid prototyping. 2) The development environment of JavaScript includes Node.js, VSCode and Webpack, which are suitable for front-end and back-end development. Choosing the right tools according to project needs can improve development efficiency and project success rate.

Yes, the engine core of JavaScript is written in C. 1) The C language provides efficient performance and underlying control, which is suitable for the development of JavaScript engine. 2) Taking the V8 engine as an example, its core is written in C, combining the efficiency and object-oriented characteristics of C. 3) The working principle of the JavaScript engine includes parsing, compiling and execution, and the C language plays a key role in these processes.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version
Chinese version, very easy to use

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
