1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| var nameList;
var construiteHtml = "";
var choisConstruire = function()
{
construiteHtml = "";
//document.write(nameList[i].nameText.replace("class", "categorie"));
document.write(nameList[i].boxText.replace(/class/gi, "categorie"));
//document.write(nameList[i].boxText.replace("sub_class", "race"));
document.write(nameList[i].boxText.replace(/sub_class/gi, "race"));
for (i=0; i < nameList.length; i++)
{
if ( nameList[i].nameListCategorie.toString().toLowerCase() == "true" )
{
construiteHtml += "<tr><td NOWRAP><a href='#' " + nameList[i].surnom + "'>" + nameList[i].boxText + "</a></td></tr>";
}
else
{
construiteHtml += "<tr><td NOWRAP>" + nameList[i].boxText + "</td></tr>";
}
}
} |
Partager