在JavaScript中我正在触发execCommand (SaveAs)
以打开Windows保存为对话框。
我保存的数据是iframe内部,我给代码提供了要使用的文件名。一切正常。
我需要做的是在向用户呈现对话框时指向特定的文件夹路径。
我已经在网上研究了几种方法,但没有使用JavaScript。
以下是我在JavaScript中调用的函数:
fnSaveCOTContents = function(COTFileData, COTFileName, COTFilePath) {
hiddenCOTiFrame.document.open("text/html","replace");
hiddenCOTiFrame.document.write(COTFileData);
hiddenCOTiFrame.document.close();
hiddenCOTiFrame.focus();
hiddenCOTiFrame.document.execCommand('SaveAs', true, COTFileName);
}
COTFilePath
包含c:\foldername\