在满足条件时不使用验证。

时间:2012-03-10 16:38:24

标签: javascript validation function

这是我的代码:

function getTable(strExp){
this.strExp = strExp;
console.log(strExp);
var strTBL = "";
if (strExp === "Res"){
    for (var it = 0; it > 3; it++){
    strTBL = strTBL + jsonData.Table.ResTBL[it];
    console.log("Im in");
    }
}
else if (valeur === "Dice"){
}
return strTBL;
}

在我的脚本中,我执行以下调用:document.getElementById(“ResTBL”)。innerHTML = getTable(“Res”)

当我看到我的控制台日志时,我没有看到我在日志中,但它给了我strExp的值。

1 个答案:

答案 0 :(得分:4)

只需将it < 3放入一个周期

for (var it = 0; it < 3; it++) {
    strTBL = strTBL + jsonData.Table.ResTBL[it];
    console.log("Im in");
}