Fonction javascript
Fermé
sspacy
Messages postés
61
Date d'inscription
lundi 4 mars 2002
Statut
Membre
Dernière intervention
31 mai 2004
-
25 avril 2002 à 16:34
sspacy Messages postés 61 Date d'inscription lundi 4 mars 2002 Statut Membre Dernière intervention 31 mai 2004 - 26 avril 2002 à 17:26
sspacy Messages postés 61 Date d'inscription lundi 4 mars 2002 Statut Membre Dernière intervention 31 mai 2004 - 26 avril 2002 à 17:26
A voir également:
- Fonction javascript
- Fonction si et - Guide
- Telecharger javascript - Télécharger - Langages
- Fonction moyenne excel - Guide
- Fonction somme excel - Guide
- A javascript error occurred in the main process - Forum Matériel & Système
1 réponse
Voici le code :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<script>
<!-- Author: HackTrack -->
function trimText(){
var textToTrim = document.aForm.entree.value;
var textLength = textToTrim.length;
var i=0;
while(i<textToTrim.length){
var aChar = textToTrim.substring(i,i+1);
if(aChar!=" "){
break;
}
i++;
}
document.aForm.entree.value = textToTrim.substring(i,textToTrim.length);
document.aForm.submit;
}
</script>
</head>
<body onLoad="document.aForm.entree.value.trim;">
<form name="aForm" action="otherPage.html;">
<input name="entree" type="texte" value=" abcdefgh" />
<br>
<button onClick="trimText();">Valider</button>
</form>
</body>
</html>
;-)
HackTrack
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<script>
<!-- Author: HackTrack -->
function trimText(){
var textToTrim = document.aForm.entree.value;
var textLength = textToTrim.length;
var i=0;
while(i<textToTrim.length){
var aChar = textToTrim.substring(i,i+1);
if(aChar!=" "){
break;
}
i++;
}
document.aForm.entree.value = textToTrim.substring(i,textToTrim.length);
document.aForm.submit;
}
</script>
</head>
<body onLoad="document.aForm.entree.value.trim;">
<form name="aForm" action="otherPage.html;">
<input name="entree" type="texte" value=" abcdefgh" />
<br>
<button onClick="trimText();">Valider</button>
</form>
</body>
</html>
;-)
HackTrack
26 avril 2002 à 17:26
Merciiiiii :*)
.::Sspacy.Millevazion: that's my world::.