This is what I have to do:
Many companies normally charge a shipping and handling charge for purchases. Create a Web page that allows a user to enter a purchase price into a text box and includes a JavaScript function that calculates shipping and handling. Add functionality to the script that adds a minimum shipping and handling charge of $1.50 for any purchase that is less than or equal to $25.00. For any orders over $25.00, add 10% to the total purchase price for shipping and handling, but do not include the $1.50 minimum shipping and handling charge. The formula for calculating a percentage is price * percent / 100. For example, the formula for calculating 10% of a $50.00 purchase price is 50 * 10 / 100, which results in a shipping and handling charge of $5.00. After you determine the total cost of the order (purchase plus shipping and handling), display it in an alert dialog box. Save the document as CalcShipping.html.
Where am I going wrong?
Here is my code:
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript">
<title>Calcuate Shipping</title>
<style>
body {
text-align: center;
font-family: sans-serif;
}
ul {
list-style-type: none;
}
ul li {
padding-bottom: 6px;
}
form label {
display: inline-block;
text-align: right;
width: 150px;
}
</style>
<script>
function calcShipping() {
// Declare variables.
var price = document.getElementById("price"),
shipping = document.getElementById
("shipping"),
total = document.getElementById("total"),
output;
// First, get the price. The value of a text input
is a string.
// Before we can do math, covert the string to a
number
// using parseFloat().
price = parseFloat(price.value);
// Next we check to see if the price is greater
than zero and
// less than or equal to $25.00.
// If it is, we put $1.50 in the shipping field,
add $1.50 to
// the price and display it in the total field.
// The return keyword tells the program to end.
// toFixed makes sure it displays two decimal
places, even if
// they're zeros.
if (price > 0 && price <= 25) {
shipping.value = "$1.50";
output = price + 1.50;
total.value = "$" + (output).toFixed(2);
return;
}
// Next, if the price is greater than $25.00 we
set the
// shipping cost as 10% of the price, show the
shipping,
// and add the price and shipping together and
show it
// in the total.
// The answer is rounded to two decimal places.
if (price > 25) {
output = (Math.round(price * 0.1) * 100) / 100;
shipping.value = "$" + output.toFixed(2);
total.value = "$" + (price + output).toFixed(2);
}
}
</script>
</head>
<body>
<form>
<ul>
<li>
<h1>Calculate Shipping</h1>
</li>
<li>
<label for="price">Purchase Price:</label>
<input type="text" id="price" size="10">
</li>
<li>
<label for="shipping">Shipping:</label>
<input type="text" id="shipping" size="10">
</li>
<li>
<input type="button" value="Calculate
Shipping"
onclick="calcShipping();">
<input type="reset" value="Reset">
</li>
<li>
<label for="total">Total:</label>
<input type="text" id="total" size="10">
</li>
</ul>
</form>
</body>
</html>
styleandtitleinside thescripttag – dinodsaurus Feb 19 at 16:48