我嘗試在Firefox,IE 9,Chrome和Opera下面的代碼,但onInitFs(fs)函數沒有調用。如果我在窗口中添加'()'到onInitFs。 requestFileSystem(window.PERSISTENT,1024 * 1024,onInitFs,errorHandler)函數被調用但fs爲空? 有沒有人知道如何解決這個問題?我嘗試在Windows 7上。我會非常感謝你的幫助。window.requestFileSystem不能正常工作
<!DOCTYPE HTML>
`<html>
<head>
<script>
function errorHandler(e){
alert("errorrrr");
}
function onInitFs(fs){
alert("onInitFs");
}
function readClick(){
if (window.webkitRequestFileSystem) {
window.webkitRequestFileSystem(window.PERSISTENT, 1024*1024,onInitFs,errorHandler);
}
else {
window.requestFileSystem(window.PERSISTENT, 1024*1024, onInitFs, errorHandler);
}
alert("read finishsssss");
}
</script>
</head>
<body>
<input type="button" value="Read dir" onclick="readClick()">
<ul id="filelist"></ul>
</body>
</html>
相關:http://stackoverflow.com/questions/19802032/how-can-a-chrome-extension-save-many-files-to-a-user-specified-directory/19813816#comment71099517_19813816 – Pacerier