Bonjour,
comme le dit le titre, je voudrais réaliser un formulaire/sondage. Et je voudrais créer une ligne qui permettrait de voter (exprimer son degré de contentement). Pour ce faire, j'ai déjà créé une ligne non cliquable :
mais évidemment, je voudrais que l'utilisateur puisse cliquer sur l'un des ronds et que l'on récupère ainsi son vote. Suis-je bien parti et comment faire ?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 <table> <tbody> <tr> <td width="70">très insatisfait</td> <td width="70"> insatisfait</td> <td width="70"> neutre </td> <td width="70">satisfait</td> <td width="70">très satisfait</td> </tr> <tr> <td bgcolor="red" width="70"> <center><img src="rond.png" width="30"></center> </td> <td bgcolor="orange" width="70"> <center><img src="rond.png" width="30"></center> </td> <td bgcolor="yellow" width="70"> <center><img src="rond.png" width="30"></center> </td> <td bgcolor="#a1eb00" width="70"> <center><img src="rond.png" width="30"></center> </td> <td bgcolor="#09eb00" width="70"> <center><img src="rond.png" width="30"></center> </td> </tr> </tbody> </table>
Partager