»
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 (hooper119@aol.com)// Modified:  Larry McClurg (larry@honeybells.com)<!-- 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-->