JS-日期框、下拉框、全選複選框

來源:互聯網
上載者:User

標籤: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-日期框、下拉框、全選複選框

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.