SearchArea.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. $(document).ready(function() {
  2. $("#AreaSearch").on("input",
  3. function() {
  4. var str = $(this).val();
  5. $.ajax({
  6. type: "GET",
  7. url: "SearchArea.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. $("#arealist").show();
  16. $("#arealist ul").html(e);
  17. }
  18. });
  19. });
  20. $("#arealist li").live("click",
  21. function() {
  22. var newcon = $(this).find(".cname").html();
  23. var id = $(this).data("id");
  24. $(".areadd").append("<li><input type='hidden' name='nosale' value='" + id + "'><span class='cname'>" + newcon + "</span><span class='close'></span></li>");
  25. $("#arealist").hide();
  26. $("#AreaSearch").val("");
  27. })
  28. $(".close").live("click",
  29. function() {
  30. $(this).parent().remove();
  31. })
  32. $("#unit").on("change",
  33. function() {
  34. var un = $(this).val();
  35. for (i = 0; i < $(".unit").length; i++) {
  36. $(".unit").eq(i).html(un);
  37. }
  38. })
  39. $(".priceitem .additem").live("click",
  40. function() {
  41. var priceitem = $(this).parent().clone();
  42. var i = $(this).parent().index();
  43. var lastnum = $(".priceitem").eq(i).find(".num").val();
  44. var lastprice = $(".priceitem").eq(i).find(".price").val();
  45. if (lastnum == "" || lastprice == "") //未输入无法继续添加
  46. {
  47. return false
  48. } else {
  49. priceitem.find("input").val("");
  50. $(this).parent().after(priceitem);
  51. }
  52. })
  53. $(".priceitem .delitem").live("click",
  54. function() {
  55. var n = $(this).parent().siblings().length;
  56. if (n > 0) {
  57. priceitem = $(this).parent().remove();
  58. } else {
  59. return false
  60. }
  61. })
  62. $(".priceitem:last .num").live("mouseleave",
  63. function() {
  64. var pnum; //Pre数量
  65. var cnum = $(this).val(); //当前数量
  66. var i = $(this).parent().index();
  67. var pre = i - 1;
  68. var len = $(".priceitem").length;
  69. if (cnum == "" || cnum == "undefined") {
  70. $(this).parent().find(".note").html("当前数量不能为空");
  71. $(this).select();
  72. return false;
  73. }
  74. if (len > 1) {
  75. pnum = $(".priceitem").eq(pre).find(".num").val();
  76. if (cnum < pnum) {
  77. $(this).parent().find(".note").html("数量低于上一项");
  78. $(this).select();
  79. }
  80. else
  81. { $(this).parent().find(".note").html("");}
  82. }
  83. })
  84. $(".priceitem:last .price").live("mouseleave",
  85. function() {
  86. var pprice; //Pre数量
  87. var cprice = $(this).val(); //当前数量
  88. var i = $(this).parent().index();
  89. var pre = i - 1;
  90. var len = $(".priceitem").length;
  91. if (cprice == "" || cprice == "undefined") {
  92. $(this).parent().find(".note").html("当前售价不能为空");
  93. $(this).select();
  94. return false;
  95. }
  96. if (len > 1) {
  97. pprice = $(".priceitem").eq(pre).find(".price").val();
  98. if (cprice > pprice) {
  99. $(this).parent().find(".note").html("售价高于上一项");
  100. $(this).select();
  101. }
  102. else
  103. { $(this).parent().find(".note").html("");}
  104. }
  105. })
  106. });