JeuWeb - Crée ton jeu par navigateur
[Réglé] Distribution point JS - Version imprimable

+- JeuWeb - Crée ton jeu par navigateur (https://jeuweb.org)
+-- Forum : Discussions, Aide, Ressources... (https://jeuweb.org/forumdisplay.php?fid=38)
+--- Forum : Programmation, infrastructure (https://jeuweb.org/forumdisplay.php?fid=51)
+--- Sujet : [Réglé] Distribution point JS (/showthread.php?tid=1446)



[Réglé] Distribution point JS - despe - 09-07-2007

Bonjour,

Voilà j ai un formulaire avec une 12aine de champs input type text et j aimerais distribuer 10 points au maximum.

Comment faire ? je coince un peu avec le JS :/

Merci d avance
Despe.


RE: Distribution point JS - carlou - 09-07-2007

la fonction js:

Code PHP :
<?php 
function addpoints(champs,val){

if(
val==1){
if(
document.form.left.value > 0){
document.form[champs].value=parseInt(document.form[champs].value)+val
document
.form.left.value--
}
}else{
if(
document.form[champs].value > 10){//le 10 equivaut aux pts attribuées au depart!!
document.form[champs].value=parseInt(document.form[champs].value)+val
document
.form.left.value++
}
}
}

et dans le form

Code PHP :
<?php 
<input name='mecanique' type='text' size='2' maxlength='2' value='10' readonly='true'>
<
input type='button' name='Button3' value='+' onClick='addpoints("mecanique",1)' >
<
input name='Button3' type='button' id='Button3' value='-' onClick='addpoints("mecanique",-1)' >

a adapter a tes besoins


RE: Distribution point JS - despe - 09-07-2007

ahh merci beaucoup Smile