JS If语句不能在android 4.4.2或iphone上运行

时间:2014-10-21 19:59:31

标签: javascript android iphone

在我的机器人或iPhone上,当我在电脑上输入玻璃时,我会得到其他信息

<script type="text/javascript">
var x = prompt("Wholesale users enter in the password or hit enter for consumer information "," ");
if(x == "glass"){
    window.alert("sometext");
    }
else {
    window.alert("else");
}
 </script>

1 个答案:

答案 0 :(得分:0)

if([x] == "glass"){

应该是

if(x == "glass"){

执行[x]时,您正在创建一个数组。由于你使用==检查它将是真的。 ===这不可能。


从评论中有一个%20又名的空白

更改提示,以便您没有空格

r information "," ");

r information ","");