分類
- 1app
- 2選項卡
- 3后臺
- 4彈窗
- 5下拉菜單
<!--彈出時間表格封裝樣式-->
<link rel="stylesheet" type="text/css" href="css/global.css" />
<!--頁面布局樣式-->
<style type="text/css">
.input_control {
width: 100%;
margin: 20px auto;
}
.fill_date_item {
text-align: center;
width: 100%;
margin-top: 50px;
}
.fill_date_item input {
display: inline-block;
}
input[type="text"] {
box-sizing: border-box;
text-align: center;
height: 2.7em;
border-radius: 4px;
border: 1px solid #c8cccf;
color: #6a6f77;
-web-kit-appearance: none;
-moz-appearance: none;
outline: 0;
padding: 0 1em;
text-decoration: none;
}
input[type="text"]:focus {
border: 1px solid #ff7496;
}
.am-btn:active:focus,
.am-btn:focus {
outline: 0;
outline: 0;
outline-offset: -2px
}
.login-area .am-g {
padding: 0 0.667rem
}
.am-list>li {
border-bottom: 1px solid #e6e9eb;
}
.am-list>li:last-child {
border-bottom: 0
}
.am-list>li>a {
padding: .4rem 0;
}
.am-list>li a {
font-size: 16px
}
[data-dpr="2"] .am-list>li a {
font-size: 32px
}
[data-dpr="3"] .am-list>li a {
font-size: 48px
}
.am-list>li:first-child {
border: none
}
.am-list,
.am-topbar {
margin-bottom: 0
}
.edition-number {
color: #666;
line-height: .8rem;
margin-bottom: .3rem;
display: block
}
.am-btn-danger {
background: #f0f3f5;
color: #c47269;
border: none
}
.am-btn-green {
background: #36bc9b;
color: #fff
}
.am-btn-green:active,
.am-btn-green:focus {
color: #fff
}
.login-area .am-btn:focus,
.login-area .am-btn:hover {
color: #fff
}
.am-panel {
margin-bottom: 0
}
.am-panel-hd {
padding: 0 2.666%;
border: none
}
.am-panel-bd {
padding: 0 0 0 2.666%;
border: none
}
</style>
<script src="js/jquery.min.js" type="text/javascript" ></script>
<!--本實例,默認參數通過url末尾數值傳遞“?type=33 ?type=34 ?type=35 ” 自行選擇修改-->
<div class="fill_date_item" id="doc-select-1">
<input type="text" placeholder="請選擇開始時間" id="fill_infomation_date_start1" readonly="">
</div>
<p></p>
<div class="mask-time" style="display:none"></div><!--遮罩層-->
<div class="time-area" style="display:none"><!--時間選擇表格-->
<input type="hidden" name="date_" value="">
<input type="hidden" name="time_">
<div class="box-date">
<ul class="promptu-menu2 font13"></ul>
</div>
<div class="time-choose-table font13 txt-gray" id="time-choose-table"></div>
<div class="font11 txt-light-gray txt-small" style="display:none"> 提示:灰色時間不可選擇,最長可預約7天內的服務時間。</div>
<input type="button" value="確定選擇" class="am-btn btn-default am-btn-green mt-line btn-choose-time" style='width:94.668%;margin-top:0px'>
</div>
<script src="js/jquery.promptu-menu.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
var type = 1;
if (type == 1) {
var type_ = 'hour';
var length_ = 1;
} else {
if (type == 2 || type == 3) {
var type_ = 'hour';
} else {
var type_ = 'halfHour';
}
var length_ = 3;
}
var nowDateArray = getNowFormatDate().split(' ');
var date_ = nowDateArray[0];
//var type_ = 'halfHour';
t(date_, type_, length_);
$('.mask-time').height($(window).height());
$('#doc-select-1').click(function() {
$('.mask-time,.time-area').show();
});
if ($('#fill_infomation_date_start1').val() == "請選擇開始時間") {
$('#fill_infomation_date_start1').css('color', '#afb2b2')
} else {
$('#fill_infomation_date_start1').css('color', '#333')
}
$('.btn-choose-time').click(function() {
$('#fill_infomation_date_start1').css('color', '#333')
if (!$('input[name=time_]').val()) {
return alert('請選擇服務時間');
}
var textTime = $('input[name=time_]').val().split(':');
$('#fill_infomation_date_start1').val($('input[name=date_]').val() + ' ' + textTime[0] + ':' + textTime[1]);
$('input[name=start_time]').val($('input[name=date_]').val() + ' ' + textTime[0] + ':' + textTime[1] + ':00');
$('.mask-time,.time-area').css("display", "none");
$('#doc-select-1').attr('value', 2);
});
});
</script>
修改建議:設置每日的時間段選擇,可以在url末尾添加 “?type=33 ?type=34 ?type=35 ”。其它代碼不建議修改。
1. 本站所有素材(未指定商用),僅限學習交流。
2. 會員在本站下載的原創商用和VIP素材后,只擁有使用權,著作權歸原作者及17素材網所有。
3. 原創商用和VIP素材,未經合法授權,請勿用于商業用途,會員不得以任何形式發布、傳播、復制、轉售該素材,否則一律封號處理。
4. 本平臺織夢模板僅展示和個人非盈利用途,織夢系統商業用途請預先授權。