码迷,mamicode.com
首页 > Web开发 > 详细

JS-日期框、下拉框、全选复选框

时间:2016-12-14 21:06:44      阅读:828      评论:0      收藏:0      [点我收藏+]

标签:sid   控制   class   auto   ble   bar   trap   box   document   

<!-- 下拉框 -->
<link rel="stylesheet" href="static/ace/css/chosen.css" />

<!-- 日期框 -->
<link rel="stylesheet" href="static/ace/css/datepicker.css" />

<!-- 日期框 -->
<script src="static/ace/js/date-time/bootstrap-datepicker.js"></script>
<!--提示框-->
<script type="text/javascript" src="static/js/jquery.tips.js"></script>

 


$(function() { //日期框 $(‘.date-picker‘).datepicker({ autoclose: true, todayHighlight: true }); //下拉框 if(!ace.vars[‘touch‘]) { $(‘.chosen-select‘).chosen({allow_single_deselect:true}); $(window) .off(‘resize.chosen‘) .on(‘resize.chosen‘, function() { $(‘.chosen-select‘).each(function() { var $this = $(this); $this.next().css({‘width‘: $this.parent().width()}); }); }).trigger(‘resize.chosen‘); $(document).on(‘settings.ace.chosen‘, function(e, event_name, event_val) { if(event_name != ‘sidebar_collapsed‘) return; $(‘.chosen-select‘).each(function() { var $this = $(this); $this.next().css({‘width‘: $this.parent().width()}); }); }); $(‘#chosen-multiple-style .btn‘).on(‘click‘, function(e){ var target = $(this).find(‘input[type=radio]‘); var which = parseInt(target.val()); if(which == 2) $(‘#form-field-select-4‘).addClass(‘tag-input-style‘); else $(‘#form-field-select-4‘).removeClass(‘tag-input-style‘); }); } //复选框全选控制 var active_class = ‘active‘; $(‘#simple-table > thead > tr > th input[type=checkbox]‘).eq(0).on(‘click‘, function(){ var th_checked = this.checked;//checkbox inside "TH" table header $(this).closest(‘table‘).find(‘tbody > tr‘).each(function(){ var row = this; if(th_checked) $(row).addClass(active_class).find(‘input[type=checkbox]‘).eq(0).prop(‘checked‘, true); else $(row).removeClass(active_class).find(‘input[type=checkbox]‘).eq(0).prop(‘checked‘, false); }); }); });

 18271929370这个百度云中有下载

http://pan.baidu.com/s/1nuVEPVb

JS-日期框、下拉框、全选复选框

标签:sid   控制   class   auto   ble   bar   trap   box   document   

原文地址:http://www.cnblogs.com/YangK-java/p/6180618.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!