remplir un champ à partir d'un tableau
Bonjour ,
ma question est la suivante ,comment remplir un champ text à partir d'un tableau codé en dur .
Voila le code :
Code:
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| <html>
<head>
<script src="jquery.js"></script>
<script>
$(document).ready(function(){
$('table td').dblclick(function(){
var cell = $(this).attr('id');
var row = $(this).parent().attr('id');
alert('Cellule: '+cell+' Ligne: '+row);
});
});
</script>
</head>
<body>
<label>test</label>
<input name="main" id="main" />
<table border=1>
<tr id="1">
<td id="1">1</td>
<td id="1-2">2</td>
<td id="1-3">3</td>
</tr>
<tr id="2">
<td id="2-1">1</td>
<td id="2-2">2</td>
<td id="2-3">3</td>
</tr>
<tr id="3">
<td id="3-1">1</td>
<td id="3-2">2</td>
<td id="3-3">3</td>
</tr>
</table>
</body>
</html> |
au lieu ,d'utiliser alert je veux remplir le champ test avec la valeur du tableau(doubleclick sur la valeur).
Merci .