jquery 카 트 정보 등급 변화 실현
9788 단어 JavaScriptjquery
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>jQuery</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
google.load("jquery", "1.2.6");
</script>
<script type="text/javascript" src="order.js"></script>
</head>
<body>
<table id="order-table">
<tr>
<th>Product Name</th>
<th>Quantity</th>
<th>X</th>
<th>Unit Price</th>
<th>=</th>
<th style="text-align: right;">Totals</th>
</tr>
<tr class="odd">
<td class="product-title">www.corange.cn<em></em>
</td>
<td class="num-pallets"><input type="text" class="num-pallets-input" id="turface-pro-league-num-pallets"> </input></td>
<td class="times">X</td>
<td class="price-per-pallet">$<span>340</span>
</td>
<td class="equals">=</td>
<td class="row-total"><input type="text" class="row-total-input" id="turface-pro-league-row-total" disabled="disabled"> </input></td>
</tr>
<tr class="even">
<td class="product-title"><p>
Turface® Pro League Red - <em>Calcined Clay Top Dressinged</em>
</p>
<p> </p>
</td>
<td class="num-pallets"><input type="text" class="num-pallets-input" id="turface-pro-league-red-num-pallets"> </input></td>
<td class="times">X</td>
<td class="price-per-pallet">$<span>455</span>
</td>
<td class="equals">=</td>
<td class="row-total"><input type="text" class="row-total-input" id="turface-pro-league-red-row-total" disabled="disabled"> </input>
</td>
</tr>
<tr class="odd">
<td class="product-title">Turface® Quick Dry - <em>Calcined Clay Moisture Absorbent</em>
</td>
<td class="num-pallets"><input type="text" class="num-pallets-input" id="turface-quick-dry-num-pallets"> </input></td>
<td class="times">X</td>
<td class="price-per-pallet">$<span>100</span>
</td>
<td class="equals">=</td>
<td class="row-total"><input type="text" class="row-total-input" id="turface-quick-dry-row-total" disabled="disabled"> </input></td>
</tr>
<tr class="even">
<td class="product-title">Turface® Mound Clay Red - <em>Virgin Red Clay</em>
</td>
<td class="num-pallets"><input type="text" class="num-pallets-input" id="turface-mound-clay-red-num-pallets"> </input></td>
<td class="times">X</td>
<td class="price-per-pallet">$<span>40</span>
</td>
<td class="equals">=</td>
<td class="row-total"><input type="text" class="row-total-input" id="turface-mound-clay-red-row-total" disabled="disabled"> </input>
</td>
</tr>
<tr class="odd">
<td class="product-title">Red Infield Conditioner - <em>Vitrified Clay Top Dressing</em>
</td>
<td class="num-pallets"><input type="text" class="num-pallets-input" id="diamond-pro-red-num-pallets"> </input></td>
<td class="times">X</td>
<td class="price-per-pallet">$<span>35</span>
</td>
<td class="equals">=</td>
<td class="row-total"><input type="text" class="row-total-input" id="diamond-pro-red-row-total" disabled="disabled"> </input></td>
</tr>
<tr class="even">
<td class="product-title">Drying Agent - <em>Calcined Clay Moisture Absorbent</em>
</td>
<td class="num-pallets"><input type="text" class="num-pallets-input" id="diamond-pro-drying-agent-num-pallets"> </input></td>
<td class="times">X</td>
<td class="price-per-pallet">$<span>340</span>
</td>
<td class="equals">=</td>
<td class="row-total"><input type="text" class="row-total-input" id="diamond-pro-drying-agent-row-total" disabled="disabled"> </input></td>
</tr>
<tr class="odd">
<td class="product-title">Professional - <em>Calcined Clay Top Dressing</em>
</td>
<td class="num-pallets"><input type="text" class="num-pallets-input" id="diamond-pro-professional-num-pallets"> </input></td>
<td class="times">X</td>
<td class="price-per-pallet">$<span>75</span>
</td>
<td class="equals">=</td>
<td class="row-total"><input type="text" class="row-total-input" id="diamond-pro-professional-row-total" disabled="disabled"> </input></td>
</tr>
<tr class="even">
<td class="product-title">Top Dressing - <em>Calcined Clay Soil Conditioner</em>
</td>
<td class="num-pallets"><input type="text" class="num-pallets-input" id="diamond-pro-top-dressing-num-pallets"> </input></td>
<td class="times">X</td>
<td class="price-per-pallet">$<span>30</span>
</td>
<td class="equals">=</td>
<td class="row-total"><input type="text" class="row-total-input" id="diamond-pro-top-dressing-row-total" disabled="disabled"> </input></td>
</tr>
<tr>
<td colspan="6" style="text-align: right;">Product SUBTOTAL: <input type="text" class="total-box" id="product-subtotal" disabled="disabled"> </input></td>
</tr>
</table>
</body>
</html>
function isNumeric(str) {
if (isInteger(str))
return true;
var re = /^[]{0,1}(\d+)[\.]+(\d+)$/;
if (re.test(str)) {
if (RegExp.$1 == 0 && RegExp.$2 == 0)
return false;
return true;
} else {
return false;
}
}
function isInteger(str) {
var regu = /^[]{0,1}[0-9]{1,}$/;
return regu.test(str);
}
function calcProdSubTotal() {
var prodSubTotal = 0;
$(".row-total-input").each(function() {
var valString = $(this).val() || 0;
prodSubTotal += parseInt(valString);
});
$("#product-subtotal").val(prodSubTotal);
};
$(function() {
$('.num-pallets-input').blur(
function() {
var $this = $(this);
var numPallets = $this.val();
var multiplier = $this.parent().parent().find("td.price-per-pallet span").text();
if ((isNumeric(numPallets)) && (numPallets != '')) {
var rowTotal = numPallets * multiplier;
$this.css("background-color", "white").parent().parent()
.find("td.row-total input").val(rowTotal);
} else {
$this.css("background-color", "#ffdcdc");
$this.parent().parent().find("td.row-total input").val("");
}
;
calcProdSubTotal();
});
});
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
기초 정리 - 1문자 (String) 숫자 (Number) 불린 (Boolean) null undefined 심볼 (Symbol) 큰정수 (BigInt) 따옴표로 묶어 있어야 함 Not-A-Number - 숫자 데이터 / 숫자로 표...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.