Bonjour ,
J'essaye de construire un json
voici mon code
quand je regarde sur firebug je n'ai qu'un seul élément au lieu d'en avoir 3Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 var json = ''; for(var i=0; i<=3; i++){ json+="{id:'"+i+"'},"; } json = json.replace(/(\s+)?.$/, ''); alert(json); $("#highlights_form_id").empty(); //var json_elmts = {elements:[{id:'1'},{id:'2'},{id:'3'}]}; var json_elmts = {elements:[json]}; console.log(json_elmts); html = Mustache.to_html(tpl,json_elmts); $("#highlights_form_id").append(html); $("#highlights_form_id").append("<input type='submit' value='submit' name='submit' />");