jquery实现的Switch开关按钮插件,可用作切换按钮。// 初始化 $('input.form_switch').each(function(idx, el) { $(this).Switch().addClass('class_name'); }) // 打开 $('.switch_open').on('click', function() { $('.sw_sdsd6').Switch('set', { checked: true }); }) // 关闭 $('.switch_close').on('click', function() { $('.sw_sdsd6').Switch('set', { checked: false }); }) // 切换反回 $(document).on('switch:sw_sdsd6', function(e, s) { console.log('当前切换:' + s) });
preview Points Download 6毛Download Share Download
未经允许不得转载: ICode联盟 » Plugin Special Effects » jquery Switch开关按钮插件