<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>文件拖拽上传插件dropzone.js</title>
<link rel="stylesheet" href="dropzone.css" />
<style>
</style>
</head>
<body>
<h1>文件拖拽上传插件dropzone.js</h1>
<!--<form id="mydropzone" action="/target" class="dropzone"></form>-->
<div id="mydropzone" class="dropzone"></div>
<script src="dropzone.min.js"></script>
<script>
var myDropzone = new Dropzone("div#mydropzone", {
url: "upfile1.aspx",
paramName: "file",
maxFilesize: 0.5, // MB
maxFiles: 5,
acceptedFiles: ".jpg,.png,.gif"
});
</script>
</body>
</html>