appointmentGuide.js 487 B

1234567891011121314151617
  1. /**
  2. * Author: Kwong
  3. * date: 2017-09-26
  4. * */
  5. (function (c) {
  6. c('.listbox').on('click','.title',function (e) {
  7. c(this).find('i').toggleClass(function (i,o) {
  8. if(o == 'icon-arrowup'){
  9. c(this).removeClass('icon-arrowup');//移除原来有的样式
  10. return 'icon-arrowdown';
  11. }else{
  12. return 'icon-arrowup';
  13. }
  14. });
  15. c(this).parent().find('.body').slideToggle(100);
  16. });
  17. })(Zepto);