什么是H5的Drag與Drop?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
成都創(chuàng)新互聯(lián)公司 - 服務(wù)器托管,四川服務(wù)器租用,成都服務(wù)器租用,四川網(wǎng)通托管,綿陽服務(wù)器托管,德陽服務(wù)器托管,遂寧服務(wù)器托管,綿陽服務(wù)器托管,四川云主機(jī),成都云主機(jī),西南云主機(jī),服務(wù)器托管,西南服務(wù)器托管,四川/成都大帶寬,機(jī)柜大帶寬、租用·托管,四川老牌IDC服務(wù)商
簡介
拖放是一種常見的特性,即抓取對象以后拖到另一個位置。
在 HTML5 中,拖放是標(biāo)準(zhǔn)的一部分,任何元素都能夠拖放。
先點(diǎn)擊一個小例子:在用戶開始拖動
元素時執(zhí)行 JavaScript
拖動我!
提示: 鏈接和圖片默認(rèn)是可拖動的,不需要 draggable 屬性。
定義和用法
在拖放的過程中會觸發(fā)以下事件:
在拖動目標(biāo)上觸發(fā)事件 (源元素): ondragstart - 用戶開始拖動元素時觸發(fā)
ondrag - 元素正在拖動時觸發(fā)
ondragend - 用戶完成元素拖動后觸發(fā)
釋放目標(biāo)時觸發(fā)的事件: ondragenter - 當(dāng)被鼠標(biāo)拖動的對象進(jìn)入其容器范圍內(nèi)時觸發(fā)此事件
ondragover - 當(dāng)某被拖動的對象在另一對象容器范圍內(nèi)拖動時觸發(fā)此事件
ondragleave - 當(dāng)被鼠標(biāo)拖動的對象離開其容器范圍內(nèi)時觸發(fā)此事件
ondrop - 在一個拖動過程中,釋放鼠標(biāo)鍵時觸發(fā)此事件
瀏覽器支持
Internet Explorer 9+, Firefox, Opera, Chrome, 和 Safari 支持拖動。
注意:Safari 5.1.2不支持拖動;在拖動元素時,每隔 350 毫秒會觸發(fā) ondragover 事件。
實例
先貼代碼,再逐一解釋:
HTML5拖拽 拖動img_w3slogo.gif圖片到矩形框中:
拖拽前的頁面效果為:
下面分別來解析下上面代碼的意思。
設(shè)置元素可拖放
首先,為了使元素可拖動,把 draggable 屬性設(shè)置為 true :
拖動什么 - ondragstart 和 setData()
然后,規(guī)定當(dāng)元素被拖動時,會發(fā)生什么。
在上面的例子中,ondragstart 屬性調(diào)用了一個函數(shù),drag(event),它規(guī)定了被拖動的數(shù)據(jù)。
dataTransfer.setData() 方法設(shè)置被拖數(shù)據(jù)的數(shù)據(jù)類型和值:
function drag(ev) { ev.dataTransfer.setData("Text",ev.target.id); }
在這個例子中,數(shù)據(jù)類型是 "Text",值是可拖動元素的 id ("drag1")。
放到何處 - ondragover
ondragover 事件規(guī)定在何處放置被拖動的數(shù)據(jù)。
默認(rèn)地,無法將數(shù)據(jù)/元素放置到其他元素中。如果需要設(shè)置允許放置,我們必須阻止對元素的默認(rèn)處理方式。
這要通過調(diào)用 ondragover 事件的 event.preventDefault() 方法:
event.preventDefault()
進(jìn)行放置 - ondrop
當(dāng)放置被拖數(shù)據(jù)時,會發(fā)生 drop 事件。
在上面的例子中,ondrop 屬性調(diào)用了一個函數(shù),drop(event):
function drop(ev) { ev.preventDefault(); var data=ev.dataTransfer.getData("Text"); ev.target.appendChild(document.getElementById(data)); }
代碼解釋:
調(diào)用 preventDefault() 來避免瀏覽器對數(shù)據(jù)的默認(rèn)處理(drop 事件的默認(rèn)行為是以鏈接形式打開)
通過 dataTransfer.getData("Text") 方法獲得被拖的數(shù)據(jù)。該方法將返回在 setData() 方法中設(shè)置為相同類型的任何數(shù)據(jù)。
被拖數(shù)據(jù)是被拖元素的 id ("drag1")
把被拖元素追加到放置元素(目標(biāo)元素)中
實現(xiàn)的結(jié)果如圖:
dataTransfer對象
在拖曳操作的過程中,我們可以用過dataTransfer對象來傳輸數(shù)據(jù),以便在拖曳操作結(jié)束的時候?qū)?shù)據(jù)進(jìn)行其他的操作。
對象屬性:
dropEffect:設(shè)置或返回拖放目標(biāo)上允許發(fā)生的拖放行為。如果此處設(shè)置的拖放行為不再effectAllowed屬性設(shè)置的多種拖放行為之內(nèi),拖放操作將會失敗。該屬性值只允許為“null”、“copy”、“l(fā)ink”和“move”四值之一。
effectAllowed:設(shè)置或返回被拖動元素允許發(fā)生的拖動行為。該屬性值可設(shè)為“none”、“copy”、“copyLink”、“copyMove”、“l(fā)ink”、“l(fā)inkMove”、“move”、“all”和“uninitialized”。
items:該屬性返回DataTransferItems對象,該對象代表了拖動數(shù)據(jù)。
types:該屬性返回一個DOMStringList對象,該對象包括了存入dataTransfer中數(shù)據(jù)的所有類型。
對象方法:
setData(format,data):將指定格式的數(shù)據(jù)賦值給dataTransfer對象,參數(shù)format定義數(shù)據(jù)的格式也就是數(shù)據(jù)的類型,data為待賦值的數(shù)據(jù)
getData(format):從dataTransfer對象中獲取指定格式的數(shù)據(jù),format代表數(shù)據(jù)格式,data為數(shù)據(jù)。
clearData([format]):從dataTransfer對象中刪除指定格式的數(shù)據(jù),參數(shù)可選,若不給出,則為刪除對象中所有的數(shù)據(jù)。
addElement(element):添加自定義圖標(biāo)
setDragImage(element,x,y):設(shè)置拖放操作的自定義圖標(biāo)。其中element設(shè)置自定義圖標(biāo),x設(shè)置圖標(biāo)與鼠標(biāo)在水平方向上的距離,y設(shè)置圖標(biāo)與鼠標(biāo)在垂直方向上的距離。
Identify what is draggable
function dragstart_handler(ev) { console.log("dragStart"); // Add the target element's id to the data transfer object ev.dataTransfer.setData("text/plain", ev.target.id); }This element is draggable.
Define the drag's data
function dragstart_handler(ev) { // Add the drag data ev.dataTransfer.setData("text/plain", ev.target.id); ev.dataTransfer.setData("text/html", "Example paragraph
"); ev.dataTransfer.setData("text/uri-list", "http://developer.mozilla.org"); }
Define the drag image
function dragstart_handler(ev) { // Create an image and then use it for the drag image. // NOTE: change "example.gif" to an existing image or the image // will not be created and the default drag image will be used. var img = new Image(); img.src = 'example.gif'; ev.dataTransfer.setDragImage(img, 10, 10); }
Define the drag effect
function dragstart_handler(ev) { // Set the drag effect to copy ev.dataTransfer.dropEffect = "copy"; }
Define a drop zone
function dragover_handler(ev) { ev.preventDefault(); // Set the dropEffect to move ev.dataTransfer.dropEffect = "move" } function drop_handler(ev) { ev.preventDefault(); // Get the id of the target and add the moved element to the target's DOM var data = ev.dataTransfer.getData("text"); ev.target.appendChild(document.getElementById(data)); }Drop Zone
火狐瀏覽器拖拽問題
但是進(jìn)行到這兒在火狐瀏覽器中發(fā)現(xiàn)一個問題:
html5的拖拽,用了preventDefault防止彈出新頁面,但在火狐下不管用?
解決辦法:
document.body.ondrop = function (event) { event.preventDefault(); event.stopPropagation(); }
或者對于上面的實例中,添加到ondrop方法里面也是可以的:
function drop(ev){ ev.preventDefault(); ev.stopPropagation(); var data=ev.dataTransfer.getData("Text"); ev.target.appendChild(document.getElementById(data)); }
看完上述內(nèi)容,你們掌握什么是H5的Drag與Drop的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!