我有一个名为prices
的数组和另一个名为orderT
的数组我想检查它是否属于某个orderType然后我与prices[i]
进行某些交易,如果它是另一种类型的另一个交易(只有2种订单)。
到目前为止,我可以迭代价格(使用accounting.js插件):
function processTotal(){
var prices = $('.prices');
var orderT = $('.orderType');
var total = 0;
$.each(prices, function(i, e){
total += accounting.unformat(prices[i].textContent);
});
total = parseFloat(total);
$('#sum').text(accounting.formatMoney(total, "€", 2, ".", ","));
}
价格部分运作良好,但我无法想象如何查看orderT
进行检查。
修改
orderT
和prices
是相关的并且在表格中,我不能发布所有表格,因为它很大但基本上是:
<td>order_type</td>
<td>$00.00</td>
答案 0 :(得分:6)
试试这个(假设.prices的数量与.orderType相同):
$.each(prices, function(i, e){
var orderType = orderT [i];
if(orderType.textContent == "2"){
//Do Something
} else {
//total += accounting.unformat(prices[i].textContent);
//Do Something
}
});
看起来.price和.orderType是相关的。如果您可以发布HTML,可以改进此代码以使用兄弟/其他选择器来访问.price和相应的.orderType