scripts.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. function calc_handle(item1, item2, price1, price2, weight1, weight2) {
  2. console.dir(item1);
  3. console.dir(item2);
  4. console.dir(price1);
  5. console.dir(price2);
  6. console.dir(weight1);
  7. console.dir(weight2);
  8. if (!isNaN(price1) || !isNaN(price2) || !isNaN(weight1) || !isNaN(weight2)) {
  9. // var item1_byWeight = Number(price1) / Number(weight1);
  10. // var item2_byWeight = Number(price2) / Number(weight2);
  11. //
  12. // if (item1_byWeight < item2_byWeight) {
  13. // var difference = Number(item2_byWeight) - Number(item1_byWeight)
  14. // console.log(item1 + "is cheapter by " + difference);
  15. // } else {
  16. // var difference = Number(item1_byWeight) - Number(item2_byWeight)
  17. // console.log(item2 + "is cheapter by " + difference);
  18. // }
  19. // send_total(item1, item2, price1, price2, weight1, weight2);
  20. } else {
  21. alert("You entered wrong format.");
  22. }
  23. }
  24. function send_total(item1, item2, price1, price2, weight1, weight2) {
  25. x = new XMLHttpRequest();
  26. x.open("GET", '/calculate_total?param1=value1&param2=value2', true);
  27. x.send();
  28. }
  29. //
  30. // var oReq = new XMLHttpRequest();
  31. // oReq.onload = function (e) {
  32. // results.innerHTML = e.target.response.message;
  33. // };
  34. // oReq.open('GET', e.target.dataset.url + '?' + new Date().getTime(), true);
  35. // oReq.responseType = 'json';
  36. // oReq.send();
  37. //
  38. //
  39. // http.open("GET", url+"?"+params, true);
  40. // http.onreadystatechange = function()
  41. // {
  42. // if(http.readyState == 4 && http.status == 200) {
  43. // alert(http.responseText);
  44. // }
  45. // }