作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要一项事件的帮助。我不断收到同样的错误,我不明白为什么会出现这种情况。
这是问题、我收到的错误和我的代码。
<html>
<body>
<script type="text/javascript">
// Program name: salesTaxLookup.html
// Purpose:
// Author:
// Date last modified: October 20th 2015
//variables and constants
var salesTax // tax
var purchases; // purchase
var BR = "<br />"; // HTML line break
var PA = "<p />"; // HTML paragraph break
var ES = ""; // empty string for prompt
// welcome the user
document.write("Welcome to sales tax calculator!" + PA);
salesTax = prompt("Enter your total amount of salesTax: ", ES);
salesTax = parseFloat(salesTax);
// calculate
if(salesTax <=0)
if(salesTax<=7) {
document.write("No tax." + BR);
}
else if (salesTax<=21){
document.write("1 cent tax." + BR);
}
else if (salesTax<=35){
document.write("2 cent tax." + BR);
}
else if (salesTax<=49){
document.write("3 cent tax." + BR);
}
else if (salesTax<=64){
document.write("4 cents tax." + BR);
else if (salesTax<=78) {
document.write("5 cents tax." + BR);
}
else if (salesTax<=92) {
document.write("6 cents tax." + BR);
}
else if (salesTax<=99){
document.write("7 cents tax." + BR)
}
</script>
</body>
</html>
最佳答案
第 39 行有语法错误,缺少 }。
应该是:
else if (salesTax<=64) {
document.write("4 cents tax." + BR);
}
关于javascript - 销售税 (JavaScript),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33284811/
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我是一名优秀的程序员,十分优秀!