Compare commits
No commits in common. "389d293465152dbb142de7a1c5c6bab3c2f3c0cf" and "5af0a016d1c795ffce8443616489a012a9e7f0d5" have entirely different histories.
389d293465
...
5af0a016d1
|
@ -17,9 +17,9 @@
|
|||
</div>
|
||||
<p>Seleziona settore:</p>
|
||||
<select id="selezione">
|
||||
<option value="Urbano">Urbano</option>
|
||||
<option value="Suburbano">Suburbano</option>
|
||||
<option value="Extraurbano">Extraurbano</option>
|
||||
<option value="urbano">Urbano</option>
|
||||
<option value="suburbano">Suburbano</option>
|
||||
<option value="extraurbano">Extraurbano</option>
|
||||
</select>
|
||||
<p>Inserisci modello mezzo:</p>
|
||||
<input type="text" id="modello">
|
||||
|
|
|
@ -8,12 +8,11 @@ const startMatricola = parseInt(matrda);
|
|||
const endMatricola = parseInt(matra);
|
||||
let jsonArray = [];
|
||||
for (let i = startMatricola; i <= endMatricola; i++) {
|
||||
link2 = link + "#" + i.toString();
|
||||
let baseJson = {
|
||||
"matricola": i.toString(),
|
||||
"settore": selezione,
|
||||
"modello": modello,
|
||||
"link": link2
|
||||
"link": link
|
||||
};
|
||||
|
||||
jsonArray.push(baseJson);
|
||||
|
|
Loading…
Reference in New Issue