The example in this article describes the implementation process of using jquery to add hot links to images by dragging and dropping. I would like to share it with you for your reference. The details are as follows:
The screenshot of the running effect is as follows:
According to the requirements of the project, you need to add different links to a picture. For example, the picture is a suite with a sofa, coffee table, wine cabinet, TV cabinet, etc. Then add a hyperlink to these objects and click Then open the introduction of related products.
Written a function to add anchor points to images using jquery. The implementation principle: One text box to write the title, one text box to write the link, one to add the button, and one Edit button. After writing the content, click Add and a P label will appear above the picture. Then press the left button of the mouse and drag the label to the corresponding place and release it. Let’s look at the specific code. .
First import jquery library
<script src="js/jquery/1.11.1/jquery.min.js"></script>
Build html.
<div class="box"> <input type="text" name="title"> <input type="text" name="link" value="http://"> <input type="button" value="添加链接" id="add"> <input type="button" value="编辑" id="show"> </div> <div class="img_box"> <img src="/static/imghwm/default1.png" data-src="images/55cc64813c330.jpg" class="lazy" alt="jquery uses drag and drop to add hotlinks to images_jquery" > </div>
Write CSS . Note that the position of the label here is relative to the position of the image, so the img_box of the image should be added with position: relative;
*{padding: 0; margin: 0;} .box{margin: 10px;} .img_box{position: relative;} .img_box .maodian{position: absolute; padding: 5px 10px; border-right: 5px; background: #000; filter:alpha(opacity=40); -moz-opacity:0.4; opacity:0.4; top:10px; left:10px; color:#FFF; font-size: 12px; font-family: "宋体"; cursor: pointer; } .maodian a{color: #FFF; text-decoration: none;}
Write JS
$(function(){ var obj = null ;//定义标签对象的全局变量,目的用于编辑 $("#add").click(function(){//绑定添加按钮单击事件 var title = $("input[name=title]").val();//取得标题内容 var link = $("input[name=link]").val();//取得超链接 var html = "<p class='maodian'><a href='"+link+"'>"+title+"</a></p>";组装P标签 $(".img_box").append(html); //添加到img_box div中,即图片的后面 }); $(".img_box").delegate(".maodian","mousedown",function(e){//绑定标签鼠标按下事件 obj = $(this);//把当前标签对象赋值给变量 if(obj.setCapture){ //用于兼容非准浏览器 obj.setCapture(); } $("input[name=title]").val(obj.find("a").text());//把点中标签的内容加到标题文本框中 $("input[name=link]").val(obj.find("a").attr("href"));/把点中标签的链接加到链接本框中 var _x = e.pageX - obj.offset().left;//取得鼠标到标签左边left的距离 var _y = e.pageY - obj.offset().top; //取得鼠标到标签顶部top的距离 var oWidth = $(this).outerWidth(); //取得标签的宽,包括padding var oHeight = $(this).outerHeight();//取得标签的高,包括padding var x=0,y=0; 定义移动的全局变量 $(".img_box").bind("mousemove",function(e){ var img_position = $(".img_box").offset(); //取得图片的位置 x = e.pageX -_x - img_position.left; //计算出移动的x值 y = e.pageY -_y - img_position.top; //计算出移动的y值 if(x<0){ //如果移动小于0,证明移到了图片外,应设为0 x = 0; }else if(x>($(".img_box img").width()-oWidth)){ //如果移动大于图片的宽度减去标签的宽度,证明移到了图片外,应该设为可用的最大值 x = $(".img_box img").width()-oWidth; } if(y<0){ //同上 y = 0; }else if(y>($(".img_box img").height()-oHeight)){ y = $(".img_box img").height()-oHeight; } obj.css({"left":x,"top":y}); }); $(".img_box").bind("mouseup",function(){ //绑定鼠标左键弹起事件 $('.img_box').unbind("mousemove"); //移动mousemove事件 $(this).unbind("mouseup"); //移动mouseup事件 if(obj.releaseCapture){ //兼容非标准浏览器 obj.releaseCapture(); } }); return false; //用于选中文字时取消浏览器的默认事件 }); $(".img_box").delegate(".maodian","dblclick",function(){//绑定双击事件 $(this).remove(); //删除当前标签 }) $("#show").click(function(){//绑定编辑按钮 //更新内容到标签 obj.find("a").text($("input[name=title]").val()).attr("href",link); }) $(".img_box").delegate("a","click",function(){ //取消a标签的单击默认事件 return false; }) })
The above is the entire content of this article, I hope it will be helpful to everyone’s study.

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

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


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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Atom editor mac version download
The most popular open source editor
