- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
JavaScript 新手,正在尝试创建一个学费计算器。我需要知道居住地,他们是否会参加校园类(class)和学分,然后计算学费。我无法使 if else 语句起作用。该代码仅针对校园类(class)显示,但一旦成功,我将添加在线类(class)等。感谢您的帮助!
如果我在每个类类型之前询问居住问题,我就会使用这个计算器,但我只想问一次居住问题,然后将学费分配给 var onctut2。我还希望学生能够为 onchours1 输入小数,但我只能让整数起作用。我尝试了各种 if else 语句。
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Tuition Calculator</title>
<script type="text/javascript">// <![CDATA[
function formHandler(form) {
var residency = eval(form.residency.value);
var onctut1 = eval(form.onctut1.value);
var onchours1 = eval(form.onchours1.value);
var onctut2 = 0;
var t1 = onctut2 * onchours1;
var totalhours = onchours1;
var oncfee1 = 0;
var techfee1 = 0;
var strecfee = 0;
//Calculate on campus tut
if (residency == "yes") && (onctut1 == "yes") {
onctut2 = 252.00;
} else if (residency == "no") && (onctut1 == "yes") {
onctut2 = 554.00;
} else {
onctut2 = 0;
}
//Calculate on campus fees
if (onchours1 == "1") {
oncfee1 = 75.25;
} else if (onchours1 == "2") {
oncfee1 = 87.5;
} else if (onchours1 == "3") {
oncfee1 = 99.75;
} else if (onchours1 == "4") {
oncfee1 = 169.5;
} else if (onchours1 == "5") {
oncfee1 = 181.75;
} else if (onchours1 == "6") {
oncfee1 = 194.0;
} else if (onchours1 == "7") {
oncfee1 = 433.25;
} else if (onchours1 == "8") {
oncfee1 = 445.5;
} else if (onchours1 == "9") {
oncfee1 = 457.75;
} else if (onchours1 == "10") {
oncfee1 = 470.0;
} else if (onchours1 == "11") {
oncfee1 = 482.25;
} else if (onchours1 == "12") {
oncfee1 = 494.5;
} else if (onchours1 == "13") {
oncfee1 = 506.75;
} else if (onchours1 == "14") {
oncfee1 = 519.0;
} else if (onchours1 == "15") {
oncfee1 = 531.25;
} else if (onchours1 == "16") {
oncfee1 = 543.5;
} else {
oncfee1 = 0;
}
//Calculate on tech fee
if (totalhours == "1") {
techfee1 = 11.;
} else if (totalhours == "2") {
techfee1 = 22.;
} else if (totalhours == "3") {
techfee1 = 33.;
} else if (totalhours == "4") {
techfee1 = 44.;
} else if (totalhours == "5") {
techfee1 = 55.;
} else if (totalhours == "6") {
techfee1 = 66.;
} else if (totalhours == "7") {
techfee1 = 77.;
} else if (totalhours == "8") {
techfee1 = 88.;
} else if (totalhours == "9") {
techfee1 = 99.;
} else if (totalhours == "10") {
techfee1 = 110.;
} else if (totalhours == "11") {
techfee1 = 121.;
} else if (totalhours == "12") {
techfee1 = 132.;
} else if (totalhours == "13") {
techfee1 = 143.;
} else if (totalhours == "14") {
techfee1 = 154.;
} else if (totalhours == "15") {
techfee1 = 165.;
} else if (totalhours == "16") {
techfee1 = 165.;
} else {
techfee1 = 0;
}
//Calculate on student rec fee
if (totalhours > "0") {
strecfee = 4;
}
var fees1 = oncfee1;
var fees = fees1 + techfee1 + strecfee;
var cost = t1 + fees;
form.t1.value = "$" + t1.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
form.fees.value = "$" + fees.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
form.costresult.value = "$" + cost.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
form.totalhours.value = "" + totalhours;
}
// ]]></script>
</head>
<body>
<form method="post" name="testform">
<div>
<table
id="AutoNumber1"
summary="calculate the cost per semester for
graduate students"
>
<tbody>
<tr>
<td colspan="2"><label for="residency">Are you a Resident? </label>
<select id="residency" name="residency">
<option selected="selected" value="0"> </option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select></td>
</tr>
<tr>
<td colspan="2"><label for="onctut1">Will you take an On campus class? </label>
<select id="onctut1" name="onctut1">
<option selected="selected" value="0"> </option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select></td>
</tr>
<tr>
<td colspan="2"><label for="onchours1">Select On campus class Credit Hours </label>
<select id="onchours1" name="onchours1">
<option selected="selected" value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
</select></td>
</tr>
<tr>
<td colspan="2"><br></td>
</tr>
<tr>
<td colspan="2"><button
name="CostResult"
onclick="javascript:formHandler(this.form)"
type="button"
> Calculate Cost </button></td>
</tr>
<tr>
<td colspan="2"><br></td>
</tr>
<tr>
<td><label for="t1">Tuition On Campus Class(es) </label></td>
<td><input id="t1" name="t1" size="10" type="text" /></td>
</tr>
<tr>
<td><label for="fees">Fees </label></td>
<td><input id="fees" name="fees" size="10" type="text" /></td>
</tr>
<tr>
<td><label for="costresult">Total Estimated Tuition/Fees Semester Cost </label></td>
<td><input
id="costresult"
name="costresult"
size="10"
type="text"
/></td>
</tr>
<tr>
<td><label for="totalhours">Total Credit Hours </label></td>
<td><input id="totalhours" name="totalhours" size="10" type="text" /></td>
</tr>
</tbody>
</table>
</div>
</form>
</body>
</html>
当我点击“计算成本”时,表格仍然是空白的。
最佳答案
if (residency == "yes") && (onctut1 == "yes") {
onctut2 = 252.00;
} else if (residency == "no") && (onctut1 == "yes") {
onctut2 = 554.00;
} else {
onctut2 = 0;
}
我的猜测是问题在于您需要在整个条件而不是每个单独的条件周围加上括号。
if (residency == "yes" && onctut1 == "yes") {
onctut2 = 252.00;
} else if (residency == "no" && onctut1 == "yes") {
onctut2 = 554.00;
} else {
onctut2 = 0;
}
看起来您还可以简化您的代码,而不是对 techfee1 变量使用大量的 if 语句,您可以这样做:
totalhours = +totalhours; // convert it to a number
techfee1 = totalhours * 11;
if (totalhours === 16) {
techfee1 = 165;
}
if (totalhours > 16 || totalhours < 1) {
techfee1 = 0;
}
关于JavaScript:if else 语句多个条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57190047/
我正在努力处理查询的 WHERE 部分。查询本身包含一个基于两个表中都存在的 ID 的 LEFT JOIN。但是,我要求 where 语句仅返回其中一列中存在的最大单个结果。目前我返回连接中的所有值,
我有这个代码来改变文件系统的大小。问题是,即使满足 if 条件,它也不会进入 if 条件,而我根本没有检查 if 条件。它直接进入 else 条件。 运行代码后的结果 post-install-ray
假设我有一个包含 2 列的 Excel 表格:单元格 A1 到 A10 中的日期和 B1 到 B10 中的值。 我想对五月日期的所有值求和。我有3种可能性: {=SUM((MONTH(A1:A10)=
伪代码: SELECT * FROM 'table' WHERE ('date' row.date 或 ,我们在Stack Overflow上找到一个类似的问题: https://stackove
我有下面这行代码做一个简单的查询 if ($this->fulfilled) $criteria->addCondition('fulfilled ' . (($this->fulfilled
如果在数据库中找到用户输入的键,我将尝试显示“表”中的数据。目前我已将其设置为让数据库检查 key 是否存在,如下所示: //Select all from table if a key entry
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 5 年前。 Improve th
在MYSQL中可以吗 一共有三个表 任务(task_id、task_status、...) tasks_assigned_to(ta_id、task_id、user_id) task_suggeste
我想先根据用户的状态然后根据用户名来排序我的 sql 请求。该状态由 user_type 列设置: 1=活跃,2=不活跃,3=创始人。 我会使用此请求来执行此操作,但它不起作用,因为我想在“活跃”成员
下面两个函数中最专业的代码风格是什么? 如果函数变得更复杂和更大,例如有 20 个检查怎么办? 注意:每次检查后我都需要做一些事情,所以我不能将所有内容连接到一个 if 语句中,例如: if (veh
我在 C# 项目中使用 EntityFramework 6.1.3 和 SQL Server。我有两个查询,基本上应该执行相同的操作。 1. Exams.GroupBy(x=>x.SubjectID)
我试图在 case when 语句中放入两个条件,但我在 postgresql 中遇到语法错误 case when condition 1 and condition 2 then X else Y
我正在构建一个连接多个表的查询,一个表 prodRecipe 将包含某些行的数据,但不是全部,但是 tmp_inv1 将包含所有行的计数信息。问题是,tmp_inv1.count 取决于某个项目是否在
我有一个涉及 couples of rows which have a less-than-2-hours time-difference 的查询(~0.08333 天): SELECT mt1.*,
我有一个包含许多这样的 OR 条件的代码(工作正常)来检查其中一个值是否为空,然后我们抛出一条错误消息(所有这些都必须填写) } elsif ( !$params{'account'}
我有一个名为 spGetOrders 的存储过程,它接受一些参数:@startdate 和 @enddate。这将查询“订单”表。表中的一列称为“ClosedDate”。如果订单尚未关闭,则此列将保留
在代码中,注释部分是我需要解决的问题...有没有办法在 LINQ 中编写这样的查询?我需要这个,因为我需要根据状态进行排序。 var result = ( from contact in d
我正在尝试创建一个允许省略参数的存储过程,但如果提供了参数,则进行 AND 操作: CREATE PROCEDURE MyProcedure @LastName Varchar(30)
我正在寻找一种方法来过滤我的主机文件中的新 IP 地址。我创建了一个脚本,每次我用来自矩阵企业管理器的数据调用它时都会更新我的主机文件。它工作正常。但是我必须找到一个解决方案,只允许更新 10.XX.
所以我正在做一种 slider ,当它完全向下时隐藏向下按钮,反之亦然,当向上按钮隐藏时,我遇到了问题。 var amount = $('slide').attr('number'); $('span
我是一名优秀的程序员,十分优秀!