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

HTML5를 사용하면 웹 브라우저 내에서 로컬 클라이언트 파일과 상호 작용할 수 있습니까?


아니요, HTML5에서는 로컬 클라이언트 파일과 직접 상호 작용할 수 없습니다. 이를 위해 드래그 앤 드롭 또는 FileSystem API를 사용할 수 있습니다.

예시

HTML5를 사용하여 웹 브라우저에서 끌어서 놓기의 예를 살펴보겠습니다.

<!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>