search
HomeWeb Front-endH5 TutorialA detailed introduction to APIs related to HTML5 element drag and drop (pictures and text)

In fact, HTML5 just adds some useful APIs
Let us develop more easily
So that we can focus more on business logic
The use of these APIs is also very simple
But I My memory is not very good
So I still record it in the form of a blog (manual funny)
Let’s write about this drag and drop API today

Default drag

Speaking of drag In fact, the earliest implementation of drag-and-drop function was IE (IE4)
H5 is the drag-and-drop specification specified based on the IE instance
In the browser, there is a default drag
For example, pictures Drag

Drag the selected text

##Drag the link

Element drag

The browser allows us to drag images, text and links by default

It is also possible to drag other elements
Only on the element tag Add an attribute

<p draggable="true"></p>

When this element is dragged, the browser will display it as a translucent copy

Drag event

The drag event should be divided into There are two types

One type is the event triggered by the dragged element
The other type is the event triggered by the drag and drop target element

<p id="source" draggable="true"></p><p id="target"></p>  <!-- 样式略 -->
var source = document.getElementById(&#39;source&#39;);var target = document.getElementById(&#39;target&#39;);

Drag element

The drag element At this time, the dragged element will trigger the following event

  • dragstart

  • drag

  • dragend

When the mouse clicks on an element and starts to move, the dragstart event will be triggered (analogous to mousedown)

The drag event will be continuously triggered during the dragging process (analogous to mousemove)
The dragend event will be triggered when the mouse is released to cancel the drag (analogous to mouseup)

source.ondragstart = function(){
  console.log(&#39;开始拖拽&#39;);
}source.ondrag = function(){
  console.log(&#39;拖拽中&#39;);
}source.ondragend = function(){
  console.log(&#39;拖拽结束&#39;);
}

Target element

When the dragged element is dragged onto a target element, the target element will trigger the following event

  • dragenter

  • dragover

  • dragleave

  • drop

Drag the element to the target, and the dragenter event will be triggered (analogous to mouseover)

When the dragged element is in the target element, the dragover event will continue to be triggered.
Leave the target element and trigger the dragleave event (analogous to mouseout)
If the element is dragged and dropped into the target element (release the mouse in the target element), the drop event will be triggered but the dragleave event will not be triggered

target.ondragenter = function(){
  console.log(&#39;拖动进入目标元素&#39;);
}target.ondragover = function(){
  console.log(&#39;目标元素中拖拽&#39;);
}target.ondragleave = function(){
  console.log(&#39;拖动离开目标元素&#39;);
}target.ondrop = function(){
  console.log(&#39;拖放&#39;);
}


At this time we will find that the drop event is not triggered when the element is dragged and dropped into the target element


We saw a special cursor (circle + backslash)

It means invalid drag and drop

So the drop event is not triggered
That is to say, the element cannot be dragged and dropped by default
As long as we cancel the default event
in the dragover event of the
target element, the problem can be solved

target.ondragover = function(e){
  console.log(&#39;目标元素中拖拽&#39;);
  e.preventDefault(); //增}
Data exchange

Just a simple drag and drop is meaningless

We need Perform data exchange

The object of this term data exchange is the attribute of the event object
dataTransfer
The two core methods of dataTransfer are setData() and getData() setData() is used Set data, use getData() to receive data

event.dataTransfer.setData(&#39;text&#39;,&#39;some text&#39;);
var text = event.dataTransfer.getData(&#39;text&#39;);//保存在dataTransfer中的数据只能在drop事件处理函数中处理

If we drag the selected text

The browser will call dataTransfer.setData by default to set the corresponding text data


setData() and getData() is a string of data type

In addition to the "text" text type, the data types defined by IE also include "URL"

H5 has extended it and can specify various MIME types
But for Backwards compatible, it also supports "text" and "URL"
They will be mapped to "text/plain" and "text/uri-list" respectively

If the data is saved as URL, the browser It will do special processing and treat it as a web link

(so dragging the link to another browser window will open the web page)


If necessary, we can manually save the data that needs to be transferred
var source = document.getElementById(&#39;source&#39;);var target = document.getElementById(&#39;target&#39;);
source.ondragstart = function(e){
  e.dataTransfer.setData('text','传递文本数据');
}
target.ondragover = function(e){
  e.preventDefault();
}
target.ondrop = function(e){
  console.log(e.dataTransfer.getData('text'));
}

Drag settings

There are two important properties in dataTransfer

dropEffect
andeffectAlloweddropEffect

The dropEffect attribute value is a string, indicating which placement behavior the dragged element can perform

To use this attribute, it must be set in the dragenter event handler function


    none Elements cannot be dragged and dropped here (default value for all elements except text boxes)
  • move Move to the target
  • copy Copy to target
  • link The target opens the drag element (the drag element must be a link and have a URL)

effectAllowed

The effectAllowed attribute value is also a character String, indicating which dropEffect is allowed to drag elements
To use this attribute, it must be set in the dragst event handler function

  • uninitialized No drag-and-drop behavior is set

  • none cannot be caused by any behavior

  • copy Only dropEffect values ​​are allowed to be copy

  • link Only dropEffect values ​​are allowed to be link

  • move Only allows dropEffect value to be move

  • copyLink Allows dropEffect value to be copy and link

  • copyMove allows dropEffect values ​​to be copy and move

  • linkMove allows dropEffect values ​​to be link and move

  • all allows any dropEffect

The above is the detailed content of A detailed introduction to APIs related to HTML5 element drag and drop (pictures and text). For more information, please follow other related articles on the PHP Chinese website!

Statement
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
H5: New Features and Capabilities for Web DevelopmentH5: New Features and Capabilities for Web DevelopmentApr 29, 2025 am 12:07 AM

H5 brings a number of new functions and capabilities, greatly improving the interactivity and development efficiency of web pages. 1. Semantic tags such as enhance SEO. 2. Multimedia support simplifies audio and video playback through and tags. 3. Canvas drawing provides dynamic graphics drawing tools. 4. Local storage simplifies data storage through localStorage and sessionStorage. 5. The geolocation API facilitates the development of location-based services.

H5: Key Improvements in HTML5H5: Key Improvements in HTML5Apr 28, 2025 am 12:26 AM

HTML5 brings five key improvements: 1. Semantic tags improve code clarity and SEO effects; 2. Multimedia support simplifies video and audio embedding; 3. Form enhancement simplifies verification; 4. Offline and local storage improves user experience; 5. Canvas and graphics functions enhance the visualization of web pages.

HTML5: The Standard and its Impact on Web DevelopmentHTML5: The Standard and its Impact on Web DevelopmentApr 27, 2025 am 12:12 AM

The core features of HTML5 include semantic tags, multimedia support, offline storage and local storage, and form enhancement. 1. Semantic tags such as, etc. to improve code readability and SEO effect. 2. Simplify multimedia embedding with labels. 3. Offline storage and local storage such as ApplicationCache and LocalStorage support network-free operation and data storage. 4. Form enhancement introduces new input types and verification properties to simplify processing and verification.

H5 Code Examples: Practical Applications and TutorialsH5 Code Examples: Practical Applications and TutorialsApr 25, 2025 am 12:10 AM

H5 provides a variety of new features and functions, greatly enhancing the capabilities of front-end development. 1. Multimedia support: embed media through and elements, no plug-ins are required. 2. Canvas: Use elements to dynamically render 2D graphics and animations. 3. Local storage: implement persistent data storage through localStorage and sessionStorage to improve user experience.

The Connection Between H5 and HTML5: Similarities and DifferencesThe Connection Between H5 and HTML5: Similarities and DifferencesApr 24, 2025 am 12:01 AM

H5 and HTML5 are different concepts: HTML5 is a version of HTML, containing new elements and APIs; H5 is a mobile application development framework based on HTML5. HTML5 parses and renders code through the browser, while H5 applications need to run containers and interact with native code through JavaScript.

The Building Blocks of H5 Code: Key Elements and Their PurposeThe Building Blocks of H5 Code: Key Elements and Their PurposeApr 23, 2025 am 12:09 AM

Key elements of HTML5 include,,,,,, etc., which are used to build modern web pages. 1. Define the head content, 2. Used to navigate the link, 3. Represent the content of independent articles, 4. Organize the page content, 5. Display the sidebar content, 6. Define the footer, these elements enhance the structure and functionality of the web page.

HTML5 and H5: Understanding the Common UsageHTML5 and H5: Understanding the Common UsageApr 22, 2025 am 12:01 AM

There is no difference between HTML5 and H5, which is the abbreviation of HTML5. 1.HTML5 is the fifth version of HTML, which enhances the multimedia and interactive functions of web pages. 2.H5 is often used to refer to HTML5-based mobile web pages or applications, and is suitable for various mobile devices.

HTML5: The Building Blocks of the Modern Web (H5)HTML5: The Building Blocks of the Modern Web (H5)Apr 21, 2025 am 12:05 AM

HTML5 is the latest version of the Hypertext Markup Language, standardized by W3C. HTML5 introduces new semantic tags, multimedia support and form enhancements, improving web structure, user experience and SEO effects. HTML5 introduces new semantic tags, such as, ,, etc., to make the web page structure clearer and the SEO effect better. HTML5 supports multimedia elements and no third-party plug-ins are required, improving user experience and loading speed. HTML5 enhances form functions and introduces new input types such as, etc., which improves user experience and form verification efficiency.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools