12345678910111213141516171819202122232425262728293031323334353637383940 |
- function calc_handle(itemtype, brandN1, brandN2, price1, price2,
- weight1, weightT1, weight2, weightT2,
- discount1, discountT1, discount2, discountT2) {
-
- x = new XMLHttpRequest();
-
- x.open("GET", '/calculate?param1=' + itemtype + '¶m2=' + brandN1 + '¶m3=' + brandN2 +
- '¶m4=' + price1 + '¶m5=' + price2 + '¶m6=' + weight1 + '¶m7=' + weightT1 +
- '¶m8=' + weight2 + '¶m9=' + weightT2 + '¶m10=' + discount1 + '¶m11=' + discountT1 +
- '¶m12=' + discount2 + '¶m13=' + discountT2);
-
- x.send();
- }
|