Forum de discussion
Forum « Programmation Javascript » (archives)
save as...
Envoyé: 25 août 2003, 7h08 par four
j'ai trouvé un fonction superbe pour sauver mon document, en js (voir plus bas). Mais je voudrais savoir s'il est possible d'effectuer cette commande depuis un frame. C'est à dire que je veux cliquer sur un lien dans un frame1 pour sauver le contenu du frame2 (la version pour imprimer donne : onClick="parent.frame2.focus();window.print()" )
mais avec le saveas ???
Merci d'avance
la fonction en question =
Allow Users To Save Your Page To Their Hard Drive
IE4+ browsers have a function that allows you to call the SaveAs dialog to save a web page. The following script includes an alternate alert message for non-IE browsers.
Paste the following script in the head of of your document.
<script language="JavaScript">
<!--
var isReady = false;
function doSaveAs(){
if (document.execCommand){
if (isReady){document.execCommand("SaveAs");}
}else{
alert('Feature available only in Internet Exlorer 4.0 and later.');
}
}
//-->
</script>
Include the following onload event call in the body tag. This stops the page being saved until it is fully loaded.
<body onload="isReady=true">
To call the script from the page and activate the SaveAs dialog, insert a link in the page like this:
<a href="javascript:doSaveAs()"> Click Here To Save This Page </a>
(source = http://www.site-mechanic.com/quick.html)
Réponses
|