如果javascript中数组中的值为空,我该如何隐藏此字符串

时间:2015-11-13 21:40:39

标签: javascript hide

我的数组在外部js文件中。我不知道如何隐藏



theString=theString+'<b>Random day of the week:</b> '+getRandomDayoftheweek(i)+'<br><br>';
&#13;
&#13;
&#13;

如果记录为空

我已经看到一堆关于如何检查它是否为空的答案我想要隐藏文本&#34;随机的一周中的某一天&#34;所有在一起

1 个答案:

答案 0 :(得分:0)

是的,所以我能够弄清楚。现在看起来很简单,但这是以防其他人有这个问题。

if (getRandomDayoftheweek(i)!=="") {  
theString=theString+'<b>Random day of the week:</b> '+getRandomDayoftheweek(i)+'<br><br>';
}