0

我是 javascript 新手,我在理解为什么这段代码不执行时遇到了一些麻烦:

var weight;

wight=parseInt(prompt("Please, enter weight");

while(weight>0);

{ 
  if (weight>199 && weight<300);
{

  document.write("Tax will be" + weight*5);
}

  else 
{

  document.write("Tax will be" + weight*10);
}
}

编辑:对不起,我在这里写下代码时拼错了一些“权重”。无论哪种方式,这都不是问题。当我在谷歌浏览器中运行它时,它只是没有提示。当它提示时,它不会执行'if'语句。

4

3 回答 3

3
while (wight>0);

分号有效地形成了这个循环:当 wight 大于 0 时,什么也不做。这会强制执行无限循环,这就是您的其余代码不执行的原因。

此外,“重量”“重量”不同。这是另一个错误。

此外,如果您将该行更改为while (weight > 0),您仍然会有一个无限循环,因为随后执行的代码不会改变“权重” - 因此,它将始终大于 0(除非在提示,在这种情况下它根本不会执行)。

你想要的是:

var weight;
weight=parseInt(prompt("Please, enter weight")); // Missing parenthesis
// Those two lines can be combined:
//var weight = parseInt(prompt("Please, enter weight"));

while(weight>0)
{ 
    if (weight>199 && weight<300)// REMOVE semicolon - has same effect - 'do nothing'
    {
        document.write("Tax will be" + weight*5);
        // above string probably needs to have a space at the end:
        // "Tax will be " - to avoid be5 (word smashed together with number)
        // Same applies below
    }
    else 
    {
        document.write("Tax will be" + weight*10);
    }
}

这在语法上是正确的。您仍然需要更改 while 条件,或更改该循环中的“权重”,以避免无限循环。

于 2013-10-25T04:57:56.310 回答
-1

尝试这个

var weight;

weight=parseInt(prompt("Please, enter weight"));

while (weight>0)
{ 
  if (weight>199 && weight<300)
{
  document.write("Tax will be" + weight*5);
}
  else 
{
  document.write("Tax will be" + weight*10);
}
}
于 2013-10-25T05:35:34.037 回答
-1

重量拼写:

while (wight>0);

while (weight>0);

也在

document.write("Tax will be" + wight*10);

document.write("Tax will be" + weight*10);
于 2013-10-25T04:59:08.300 回答