酒店入住离店js日历代码
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
body{padding:0;margin:0 10px;}
.title{padding:0;margin:10px 0;font:700 18px/1.5 \5fae\8f6f\96c5\9ed1;}
.title em{font-style:normal;color:#C00;font-size:14px;}
.title a{font:400 14px/1.5 Tahoma;}
.example{margin-top:10px;}
.example button{margin:0 5px 10px 0;}
var config = {
modules: {
'price-calendar': {
fullpath: 'price-calendar.js',
type : 'js',
requires: ['price-calendar-css']
},
'price-calendar-css': {
fullpath: 'price-calendar.css',
type : 'css'
}
}
};
YUI(config).use('price-calendar', 'jsonp', function(Y) {
var sub = ng.sub;
var url = '/learn/calendar/price-calendar/getData.asp?minDate={mindate}&m axDate={maxdate}&callback={callback}';
//价格日历实例
var oCal = new Y.PriceCalendar();
//点击确定按钮
oCal.on('confirm', function() {
alert('入住时间:' + this.get('depDate') + '\n离店时间:' + this.get('endDate'));
});
//点击取消按钮
oCal.on('cancel', function() {
this.set('depDate', '').set('endDate', '').render();
});
Y.one('#J_Example').delegate('click', function(e) {
var that = this,
oTarget = e.currentTarget;
switch(true) {
//设置日历显示个数
case oTarget.hasClass('J_Count'):
this.set('count', oTarget.getAttribute('data-value')).render();
break;
//时间范围限定
case oTarget.hasClass('J_Limit'):
this.set('data', null)
.set('depDate', '')
.set('endDate', '')
.set('minDate', '')
.set('afterDays', oTarget.getAttribute('data-limit'));
if(!oTarget.hasAttribute('data-date')) {
this.set('date', new Date())
}
else {
var oDate = oTarget.getAttribute('data-date');
this.set('minDate', oDate);
this.set('date', oDate);
}
oTarget.ancestor().one('.J_RoomStatus') ?
oTarget.ancestor().one('.J_RoomStatus').setContent('\u663e\u793a\u623f\u6001').removeClass(' J_Show') :
oTarget.ancestor().append('');
break;
//异步拉取酒店数据
case oTarget.hasClass('J_RoomStatus'):
oTarget.toggleClass ('J_Show');
if(oTarget.hasClass('J_Show'))
Y.jsonp(
sub(url, {
mindate:this.get('minDate'),
maxdate:this.get('maxDate')
}),
{
on: {
success: function(data) {
that.set('data', data);
oTarget.setContent('\u9690\u85cf\u623f\u6001')
}
}
}
);
else {
this.set('data', null);
oTarget.setContent('\u663e\u793a\u623f\u6001');
}
break;
}
}, 'button', oCal);
});