Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

IE는 HTML5 파일 API를 지원합니다.

<시간/>

IE9는 파일 API를 지원하지 않습니다.

IF10이 지원되는 파일 API 시작

드래그 앤 드롭이 그 예입니다. 이제 HTML 5에는 브라우저에 기본 DnD 지원을 제공하여 훨씬 쉽게 코딩할 수 있는 드래그 앤 드롭(DnD) API가 등장했습니다.

<!DOCTYPE HTML>
<html>
   <head>
      <style>
         #boxA, #boxB { float:left;padding:10px;margin:10px; -moz-user-select:none; }
         #boxA { background-color: #6633FF; width:75px; height:75px; }
         #boxB { background-color: #FF6699; width:150px; height:150px; }
      </style>
      <script>
         function dragStart(ev) {
            ev.dataTransfer.effectAllowed='move';
            ev.dataTransfer.setData("Text", ev.target.getAttribute('id'));
            ev.dataTransfer.setDragImage(ev.target,0,0);
            return true;
         }
      </script>
   </head>

   <body>
      <center>
         <h2>Drag and drop HTML5 demo</h2>
         <div>Try to drag the purple box around.</div>
         <div id = "boxA" draggable = "true"
            ondragstart = "return dragStart(ev)">
            <p>Drag Me</p>
         </div>
         <div id = "boxB">Dustbin</div>
      </center>
   </body>
</html>