»
AnglaisFran�aisVietnamien

Imprimer - Fichier Ouvrir - JavaScriptBank.com

Version compl�te: jsB@nk » Utilitaire » Fichier Ouvrir
URL: https://www.javascriptbank.com/file-open.html

Fichier Ouvrir © JavaScriptBank.comCet JavaScript permet à quelqu'un de choisir un fichier sur leur disque dur et ouvrez-le. Maintenant, cross-browser compatible.

Version compl�te: jsB@nk » Utilitaire » Fichier Ouvrir
URL: https://www.javascriptbank.com/file-open.html



JavaScript
<SCRIPT LANGUAGE="JavaScript">// Hoop Hooper ([email protected])// Modified:  Larry McClurg ([email protected])<!-- Begin// Thank you Larry McClurg for the cross-browser fixfunction whatFile() {window.location= 'file:///' + document.form1.cmuds.value;}//  End --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<form name=form1><input type=file name="cmuds"><input type=button onClick="whatFile()" value="Open File"></form><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->