Version compl�te: jsB@nk » Form » Sélectionnez et Auto Copy
URL: https://www.javascriptbank.com/select-and-auto-copy.html
Avec ce script, vous pouvez mettre en surbrillance et copier du texte dans une boîte de texte avec le clic d'un bouton. IE seulement (Dans Netscape, il ne fait que souligner le texte, qui n'est pas le copier.)
Version compl�te: jsB@nk » Form » Sélectionnez et Auto Copy
URL: https://www.javascriptbank.com/select-and-auto-copy.html
<SCRIPT LANGUAGE="JavaScript">// Russ ([email protected])<!-- Beginfunction copyit(theField) {var tempval=eval("document."+theField)tempval.focus()tempval.select()therange=tempval.createTextRange()therange.execCommand("Copy")}// End --></script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->
<form name="it"><input onclick="copyit('it.select1')" type="button" value="Press to Copy the Text" name="cpy"><p><textarea name="select1" rows="3" cols="25">If this is highlighted, then it has been copied.</textarea></form><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->