<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<body>
<input type="file" id="files" multiple />
<label id="list"></label>
<script>
//Interact with local files using the HTML5 file API
function handleFileSelect(evt)
{
//target is the element that triggered the event
var files = evt.target.files; // FileList object
// files is a FileList of File objects. List some properties.
for(var i=0; i<files.length; i++)
{
f = files[i];
document.getElementById('list').innerHTML += f.name + ' ' + f.type + ' ' + f.size + ' bytes ' + f.lastModifiedDate + '<br/>';
}
}
document.getElementById('files').addEventListener('change', handleFileSelect, false);
</script>
</body>
</html>
我只是想知道如果脚本部分从正文移动到头部,为什么代码无法正常工作。
正确工作的代码应该显示文件名及其大小和其他详细信息,但是当移动代码时,它不显示任何内容。
答案 0 :(得分:7)
因为当你把它放在头部时,文件元素还没有存在。因此,当您致电document.getElementById('files')
时,会返回null
,导致addEventListener
废弃。
浏览器自上而下构建页面。最常见的是你将JavaScript置于底层。
或者,您可以加入DOMContentLoaded
事件。这基本上就是jQuery&#39; $(document).ready()
所做的。或者window.onload = function() {...}
或document.onload = function() {...}
。
但实际上,将它放在底部更简单。我通常只是这样做。