1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <script language="JavaScript">
function display(txtarea){
var s = (txtarea.value).substring(txtarea.selectionStart,
txtarea.selectionEnd);
alert ('affichage de la sélection:' + s);
var s2 = s.toUpperCase();
alert ('affichage de la sélection changée:' + s2);
return s2;
}
</script>
<body bgcolor="white" onload="thisForm=document.frmKey;">
<form method="POST" action="art466.html" id="frmTest" name="frmKey">
<textarea name="entry" rows="10" cols="70" ID="Textarea1">selectionnez un morceau de texte.</textarea>
<br />
Select your city, and click the place button below.<br />
<img onClick="display(thisForm.entry);" src="test.gif">
</form>
</body> |