Authored by 毕凯

地址管理编辑 删除 增加点击效果

@@ -73,3 +73,9 @@ $action.on('touchend', '.del', function() { @@ -73,3 +73,9 @@ $action.on('touchend', '.del', function() {
73 $confim.fadeIn(); 73 $confim.fadeIn();
74 return false; 74 return false;
75 }); 75 });
  76 +
  77 +$action.on('touchstart', 'a,span', function() {
  78 + $(this).css('background', '#eee');
  79 +}).on('touchend touchcancel', 'a,span', function() {
  80 + $(this).css('background', 'transparent');
  81 +});
@@ -56,7 +56,7 @@ @@ -56,7 +56,7 @@
56 } 56 }
57 57
58 .edit { 58 .edit {
59 - padding-right: pxToRem(20px); 59 + margin-right: pxToRem(20px);
60 } 60 }
61 } 61 }
62 } 62 }