kiner_touch

功能描述

移动端列表项删除插件

依赖的模块

jquery

使用方法

  1. $(".session-box").slide2del({
  2. sItemClass: ".session-box",
  3. sDelBtnClass: ".del-btn",
  4. delHandler: function (target) {
  5. var text = target.find('.session-content').text();
  6. target.remove();
  7. alert(text+"成功删除");
  8. },
  9. itemClickHandler: function (target) {
  10. console.log("你点击了选项:" + target.text());
  11. // return false;//阻止默认事件
  12. // $(this).slide2del_hideDel();
  13. }
  14. });