2
 <!DOCTYPE HTML> 
 <html> <head>` <style type="text/css">
 #div1, #div2, #div3, #div4
{float:left; width:100px; height:35px; margin:10px;padding:10px;border:1px solid #aaaaaa;}
</style>
<script type="text/javascript">
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> </head> <body>
<div id="div1" ondrop="drop(event)" ondragover="allowDrop(event)"> <img src="http://creativebits.org/files/trash-osx.png" draggable="true" ondragstart="drag(event)" id="drag1" width="88" height="31" /> </div>
<div id="div2" ondrop="drop(event)" ondragover="allowDrop(event)"></div>
<div id="div3" ondrop="drop(event)" ondragover="allowDrop(event)"></div>
<div id="div4" ondrop="drop(event)" ondragover="allowDrop(event)"></div>
</body> </html>

アプリケーションでドラッグアンドドロップイベントが必要です.....ネットから取得した上記のhtml5ファイルを作成しました。これは、Webブラウザーでは正常に機能しますが、Androidエミュレーターで実行すると、機能が機能しません。クリックしないオプションも来ています...Androidエミュレーターまたは他のデバイスで実行するために何かを追加する必要がありますか.....

4

0 に答える 0