代码拉取完成,页面将自动刷新
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>jQuery价格日历控件 - 显示价格日历、修改价格日历</title>
<link href="css/datepicker.css" rel="stylesheet"/>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/zlDate.js"></script>
<style type="text/css">
* {
margin: 0;
padding: 0px;
}
.calendar_btn {
margin-top: 10px;
padding: 0px 5px;
height: 30px;
line-height: 30px;
border-radius: 3px;
border: 1px solid #ccc;
cursor: pointer;
text-align: center;
}
</style>
<script>
var hotelId = null;//酒店ID
/**
* 显示价格日历
* @param e 按钮元素对象
* @param id 资源ID(酒店ID)
*/
function showCalendar(e, id) {
hotelId = id;
$.get('data.json?hotel_id=' + hotelId, function (data) {
console.log(data);
pickerEvent.setPriceArr(data);
pickerEvent.Init(e);
});
}
/**
* 修改价格
* @param date
* @param newPrice
* @param calendarPrice
*/
function changePrice(date, newPrice, calendarPrice) {
alert('修改价格' + date + "天的价格为" + newPrice);
var params = {
hotelId: hotelId,
date: date,
price: newPrice
};
$.post('change.json?hotel_id=' + hotelId, params, function (data, status) {
if (data.code == 100) {
calendarPrice.show();
} else {
alert("修改失败!");
}
});
}
</script>
</head>
<body>
<div style="margin: 50px">
<input style="width: 124px" location="right" class="calendar_btn" name="calendar" readonly="readonly"
onclick="showCalendar(this,'232');" placeholder="酒店价格日历"/>
</div>
<div style="margin: 50px">
<input style="width: 124px" location="right" class="calendar_btn" name="calendar" readonly="readonly"
onclick="showCalendar(this,'233');" placeholder="酒店价格日历"/>
</div>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。