此腳本適用於IE 6,但不適用於IE 8.0 我的用戶現在得到「訪問被拒絕錯誤」。我指定用戶執行哪些設置可啓用 本地文件訪問,以便此腳本可以正常工作?即8.0試圖打開本地文件時拒絕訪問
<script language="JavaScript">
function viewFile(selectedItem) {
for (i=0; i<selectedItem.options.length; i++) {
if ((selectedItem.options[i] != null) && (selectedItem.options[i].selected == true)) {
window.open("file://"+selectedItem.options[i].text);
}
}
}
</script>
用戶可以從本地驅動器中選擇多個文件。該列表存儲在文本框中,然後單擊列表中的一個選定文件。
例子:
selectedItem.options[i].text = C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\Sunset.jpg
你的腳本是做什麼設計的?你的問題並不清楚。它是一個上傳腳本? – calvinf 2010-12-02 20:55:43