Searchproduct.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. $(document).ready(function() {
  2. $("#productSearch").on("input",
  3. function() {
  4. var str = $(this).val();
  5. $.ajax({
  6. type: "GET",
  7. url: "Searchproduct.php",
  8. dataType: "html",
  9. contentType: "application/json;charset=utf-8",
  10. data: {
  11. "str": str
  12. },
  13. timeout: 20000,
  14. success: function(e) {
  15. $("#productlist").show();
  16. $("#productlist ul").html(e);
  17. }
  18. });
  19. });
  20. $(".productlist li").live("click",
  21. function() {
  22. var id = $(this).data("id");
  23. var unit = $(this).data("unit");
  24. var n = "<div class='proname'>" + $(this).find(".name").html() + "</div>";
  25. var pic = "<div class='propic'>" + $(this).find(".pic").html() + "</div>";
  26. var item = "<div class='proitem'><div class='prodelet'></div>" + n + pic + "<div class='proprice'><div class='priceitem'><input type='hidden' name='productId' value="+id+"><label>≥</label><input type='number' autocomplete='off' class='txt3 num' name='num'><label class='unit'>" + unit + "</label> <label>售价</label><input type='text' class='txt3 price' autocomplete='off' name='price'><label>RMB</label> <span class='additem'></span><span class='delitem'></span><span class='note'></span></div></div></div>";
  27. $(".prowapper").append(item);
  28. $("#productlist").hide();
  29. $("#productSearch").val("");
  30. })
  31. $(".prodelet").live("click",
  32. function() {
  33. $(this).parent().remove();
  34. })
  35. $(".priceitem .additem").live("click",
  36. function() {
  37. var priceitem = $(this).parent().clone();
  38. var i = $(this).parent().index();
  39. var lastnum = $(".priceitem").eq(i).find(".num").val();
  40. var lastprice = $(".priceitem").eq(i).find(".price").val();
  41. if (lastnum == "" || lastprice == "") //未输入无法继续添加
  42. {
  43. return false
  44. } else {
  45. priceitem.find(".num").val("");
  46. priceitem.find(".price").val("");
  47. $(this).parent().after(priceitem);
  48. }
  49. })
  50. $(".priceitem .delitem").live("click",
  51. function() {
  52. var n = $(this).parent().siblings().length;
  53. if (n > 0) {
  54. priceitem = $(this).parent().remove();
  55. } else {
  56. return false
  57. }
  58. })
  59. $(".priceitem .num").live("blur",
  60. function() {
  61. var pnum; //Pre数量
  62. var cnum = $(this).val(); //当前数量
  63. var i = $(this).parent().index();
  64. var pre = i - 1;
  65. var len = $(".priceitem").length;
  66. if (len > 1) {
  67. pnum = $(".priceitem").eq(pre).find(".num").val();
  68. console.log(pnum);
  69. if (eval(cnum) < eval(pnum)) {
  70. $(this).parent().find(".note").html("当前数量不能小于上一项");
  71. $(this).select();
  72. }
  73. else
  74. {$(this).parent().find(".note").html("");}
  75. }
  76. })
  77. $(".priceitem .price").live("blur",
  78. function() {
  79. var pprice; //Pre数量
  80. var cprice = $(this).val(); //当前数量
  81. var i = $(this).parent().index();
  82. var pre = i - 1;
  83. var len = $(".priceitem").length;
  84. if (len > 1) {
  85. pprice = $(".priceitem").eq(pre).find(".price").val();
  86. if (eval(cprice) > eval(pprice)) {
  87. $(this).parent().find(".note").html("当前售价不能高于上一项");
  88. $(this).select();
  89. }
  90. else
  91. {$(this).parent().find(".note").html("");}
  92. }
  93. })
  94. });