Home > Web Front-end > JS Tutorial > body text

JQuery operation/get table specific code_jquery

WBOY
Release: 2016-05-16 17:32:27
Original
1277 people have browsed it

//nav_box table name

Copy code The code is as follows:

$("#nav_box tr" ).each(function (i) {
//var text = $(this).children("td:first").text();
//var proid = $(this).find( "input:hidden").val();
//alert("proid==" i "===" proid);
var num = $("#ProNum" i).val() ; //Quantity
var price = $("#Price" i).val(); //Price
var percent = $("#Percent" i).val(); //Discount
var discountAmount = percent * price; //Discount price
$("#discountAmount" i).val(discountAmount.toFixed(2)) //Discount price
var total = discountAmount * num; //Small Total = discount price * quantity
$("#Total" i).val(total.toFixed(2)); //Subtotal
});
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!