作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何从 MySQL 实时检查我的运费?
示例:
Shipping Cost Table
+----+------------+----------+-------+
| id | value_from | value_to | price |
+----+------------+----------+-------+
| 1 | 1 | 10 | 100 |
| 2 | 11 | 20 | 200 |
+----+------------+----------+-------+
<小时/>
Product Name : Shirt | Quantity : 2 | Price : 100 | Subtotal : 200
Product Name : Shoes | Quantity : 1 | Price : 150 | Subtotal : 150
Product Name : Pants | Quantity : 3 | Price : 50 | Subtotal : 150
Total : 500
Total quantity : 6
Shipping Cost
(•) 100 (radio checked) //Get value from MySQL if quantity >= value_from, shipping price = 100
Total price : 600
如果我更改产品数量,例如:
Product Name : Shirt | Quantity : 5 | Price : 100 | Subtotal : 500
Product Name : Shoes | Quantity : 1 | Price : 150 | Subtotal : 150
Product Name : Pants | Quantity : 5 | Price : 50 | Subtotal : 250
Total : 900
Total quantity : 11
总数量 = 11
单选按钮上的运费将实时更改为 200,如下所示:
Shipping Cost
(•) 200 (radio checked)
Total price : 1100
我的代码 jsfiddle (仅 HTML 和实时更改 Javascript,不能实时检查 PHP 和 MySQL 的运费)
最佳答案
运费 = {10: 100, 20: 200};//{value_to: 价格}
然后比较总数量即可得出价格。
function getPrice(quality) {
var currentPrice = 0;
for (value in shippingCost) {
if (quality <= value) {
currentPrice = shippingCost[value];
}
}
if (currentPrice == 0) {// There is an exception here, the quality is not matched with shipping cost table}
}
注意:我没有使用此代码进行测试,如果它引发一些错误,我很抱歉,但这是一个想法。
关于javascript - 如何从 MySQL 实时查看运费,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35643628/
我是一名优秀的程序员,十分优秀!