第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

HTML5 drag and drop 中出現(xiàn)錯(cuò)誤

HTML5 drag and drop 中出現(xiàn)錯(cuò)誤

sherryliu 2018-02-07 15:21:26
<!DOCTYPE?html> <html> <head> <meta?charset="UTF-8"> <title>Document</title> <style> #box{ width:300px; height:180px; border:1px?solid?#000; } #img1{ width:200px; height:120px; margin:?20px; } </style> </head> <body> <div?id="box"></div> <img?src="img/6.jpg"?id="img1"?draggable="true"> <script> window.onload=function(){ var?box=document.getElementById('box'), img1=document.getElementById('img1'); img1.ondragstart=drag(event); box.ondragover=allowdrop(event); box.ondrop=drop(event); function?allowdrop(ev){ ev.preventDefault(); } function?drag(ev){ ev.dataTransfer.setData("Text",ev.target.id); } function?drop(ev){ ev.preventDefault(); var?data=ev.dataTransfer.getData("Text"); ev.target.appendChild(document.getElementById(data)); } } </script> </body> </html>當(dāng)我把ondragstart? ?ondragover? ?ondrop事件放在HTML元素標(biāo)簽內(nèi)時(shí),代碼正常運(yùn)行,但是像上邊放在<script>中時(shí),就會(huì)出現(xiàn)錯(cuò)誤Uncaught TypeError: Cannot read property 'setData' of undefined? 請(qǐng)問(wèn)各位大神是哪里出了問(wèn)題,怎么修改?
查看完整描述

1 回答

  • 1 回答
  • 0 關(guān)注
  • 1143 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)