javascript检查并替换两个字符串

时间:2012-06-28 18:47:53

标签: javascript string compare indexof

我有两个字符串str1str2。检查它们并查看是否有任何一个字符串为空。

如果是,则将该str替换为另一个。

if(indexOf(str1) < -1 || indexOf(str2) < -1){
   str1 = str2;
 }

这会有用吗?

1 个答案:

答案 0 :(得分:5)

不,这不会有多种原因。但这会:

if(!str1)
    str1 = str2;
else if(!str2)
    str2 = str1;