码迷,mamicode.com
首页 > 其他好文 > 详细

最大预约时间大于最小预约时间。团操课种管理

时间:2016-07-25 10:32:12      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 

技术分享

/action/project/erpClub/teachMngSys/gpoperSet/classdef/crud

<div class="form-group" >
                        <label class="col-xs-2 col-sm-3 col-md-3 col-lg-3 control-label col-xs-offset-1 col-sm-offset-1 col-md-offset-1 col-lg-offset-1">                                                
                            最小提前预约时间(小时)</label>
                        <div class="col-xs-8 col-sm-7 col-md-7 col-lg-7">    
                            <input type="text" class="form-control" id="f_allowbook" name="f_allowbook" value="" maxlength="80" readonly/>                                                
                        </div>                        
                </div>
                <div class="form-group" >
                        <label class="col-xs-2 col-sm-3 col-md-3 col-lg-3 control-label col-xs-offset-1 col-sm-offset-1 col-md-offset-1 col-lg-offset-1">                                                
                            提前取消预约时间(小时)</label>
                        <div class="col-xs-8 col-sm-7 col-md-7 col-lg-7">    
                            <input type="text" class="form-control" id="f_allowcancel" name="f_allowcancel" value="" maxlength="80" readonly/>                                                
                        </div>            
                </div>

$("#f_allowbeginbook").on(‘blur‘,function(){
            var f_allowbeginbook=     $(‘#f_allowbeginbook‘).val();        
            var f_allowbook=$(‘#f_allowbook‘).val();    
                if(f_allowbeginbook<=f_allowbook&&f_allowbook!=‘‘){
                    $(‘#f_allowbeginbook‘).val(‘‘);    
                    alert(‘最大预约时间不能小于最小预约时间‘)
                }
        });
        
        $("#f_allowbook").on(‘blur‘,function(){
            var f_allowbeginbook=     $(‘#f_allowbeginbook‘).val();        
            var f_allowbook=$(‘#f_allowbook‘).val();    
            if(f_allowbeginbook<=f_allowbook&&f_allowbeginbook!=‘‘){
                $(‘#f_allowbook‘).val(‘‘);    
                alert(‘最小预约时间不能大于最大预约时间‘)
            }
    });

 

最大预约时间大于最小预约时间。团操课种管理

标签:

原文地址:http://www.cnblogs.com/prefect/p/5702541.html

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