print_r($getPrice)
结果是:$getPrice 包含的元素不知道,它可以是 1 或 2 或类似以下(3 个元素)
Array
(
[0] => Array
(
[price_qty] => 2
[price] => 100.0000
)
[1] => Array
(
[price_qty] => 5
[price] => 90.0000
)
[2] => Array
(
[price_qty] => 8
[price] => 80.0000
)
)
jquery代码:获取所有输入值并进行加法
$(document).ready(function() { //wrap in a document.ready event handler
$('input').on('keyup', function() {
var result = 0;
$('.liste_couleur_qty li input').each(function() {
result += parseInt(this.value, 10);
});
$('div#qtyvalue').text(result);
});
});
现在,我想将结果与[price_qty]
数组$getPrice
中的结果进行比较。如果结果小于 0,则使用结果乘以 [price](来自 $getPrice 数组)值。
例如:
if result(from the jquery code) < 2, then price= result*110. then $('div#qtyvalue').text(result); change to $('div#qtyvalue').text("the qty is "+result+" the price is "+price);
if between 2--5(contain 5), the price is 100. if between 5--8(not contain 8), the price is 90
怎么做?谢谢你。
有没有办法将 php 数组放入 javascript 数组中,然后进行比较?