我正在考虑创建一个事件和预订系统。
我发现Stack Overflow问题jQuery - Mobile date picker control显示jquery-mobile-datebox和jQuery-Mobile-Themed-DatePicker。
我想显示一个日历,其中我从服务器获得的某些日期是
当触摸保留或可用日期时,我想显示时间 - 每天可能有多个时间。然后,用户可以单击一个时间来保留它,这将触发Ajax请求。
例如,jQuery UI datepicker有 onSelect: function(date, inst) {
从我在上面的选择器中看到的,我需要的是不容易获得的。在我开始自己攻击之前:
更新:
Firebug给了我
<div class="ui-datebox-griddate ui-corner-all ui-btn-up-e" data-date="25" data-theme="e">25</div>
其中ui-btn-up-e可以从a-e更改。
现在我需要找出是否还需要更改数据主题
$('.ui-datebox-griddate').click(function () {
alert($(this).attr("class"));
}
每次切换三个类并保存状态最好的方法是什么?
$('.ui-datebox-griddate').toggle(
function () {
$(this).????? // change ui-btn-up-? to ui-btn-up-a
$.get(...)
},
function () {
$(this).????? // change ui-btn-up-a to ui-btn-up-b
$.get(...)
},
function () {
$(this).????? // change ui-btn-up-b to ui-btn-up-c
$.get(...)
}
);
更新:注意:当我点击时,日历会更改日期,完全重新加载日历。也许我需要阻止它:(
答案 0 :(得分:5)
每次切换三个类并保存状态最好的方法是什么?
类似的东西:
$('.ui-datebox-griddate').click(function (e) {
var $this = $(this);
var cycle = ["ui-btn-up-a", "ui-btn-up-b", "ui-btn-up-c"];
if (typeof $this.data("ui-btn-cycle") == "undefined" ) {
this.className = this.className.replace(/ui-btn-up-./, cycle[0]);
$this.data("ui-btn-cycle", cycle[0]);
}
for (var i=0; i<cycle.length; i++) {
if ( $this.hasClass(cycle[i]) ) {
$this.removeClass(cycle[i]).addClass(cycle[i % cycle.length]);
$this.data("ui-btn-cycle", [i % cycle.length]);
break;
}
}
$.get( ... );
e.preventDefault() // stop default click behaviour
});
这可以循环任意数量的类。通过在相应元素上调用.data("ui-btn-cycle")
可以获得当前状态。
这更好:
$('.ui-datebox-griddate')
.each(function () {
var cycle = ["ui-btn-up-a", "ui-btn-up-b", "ui-btn-up-c"];
$(this).data("ui-btn-cycle", cycle);
this.className = this.className.replace(/ui-btn-up-./, cycle[0]);
})
.click(function (e) {
var cycle = $(this).data("ui-btn-cycle");
$(this).removeClass(cycle[0]).addClass(cycle[1]);
cycle.push(cycle.shift());
e.preventDefault();
});
当前状态在相应元素上始终为.data("ui-btn-cycle")[0]
。看到它在这里工作:http://jsfiddle.net/Tomalak/mAH4n/
答案 1 :(得分:4)
基于J.T.Sage所说的我认为我会玩jQuery Mobile Calendar。我想我可以扩展一些东西以满足您的要求。我不确定多色主题在多大程度上是可能的(没有大量修改)。
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQueryMobile - DateBox Demos</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css" />
<link type="text/css" href="http://dev.jtsage.com/cdn/datebox/latest/jquery.mobile.datebox.min.css" rel="stylesheet" />
<!-- NOTE: Script load order is significant! -->
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
<script type="text/javascript">
$( document ).bind( "mobileinit", function(){ $.mobile.page.prototype.options.degradeInputs.date = 'text'; });
</script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
<script type="text/javascript" src="http://dev.jtsage.com/cdn/datebox/latest/jquery.mobile.datebox.min.js"></script>
<script type="text/javascript">
$('#page').live('pagecreate', function(event) {
$('#mydate').bind('change', function () {
alert($(this).val());
});
});
</script>
</head>
<body>
<div id="page" data-role="page">
<div data-role="content">
<input name="mydate" id="mydate" type="date" data-role="datebox" data-options='{"mode": "calbox", "calHighToday": false, "calHighPicked": false, "useInline": true, "useInlineHideInput": true, "highDates": ["2011-06-25", "2011-06-27", "2011-07-04"]}'></input>
</div>
</div>
</html>
<强>更新强>
我认为 highDates 机制可以被完全绕过,并且每个日子都是唯一的目标。该插件维护一个选定的最后日期的JavaScript Date对象(或者今天没有选择任何内容) - 因此应该可以获得当前月份并迭代所有匹配的数据,以适当地更新当前月份的匹配日期(例如,使用能够识别数据/状态的内容替换下面的 setColours 方法。
<script type="text/javascript">
$('#page').live('pagecreate', function(event) {
$('#mydate').bind('change', function () {
//alert($(this).val());
alert($('#mydate').data('datebox').theDate);
});
setColours();
$('#mydate').bind('datebox', function (e, pressed) {
setColours();
});
$('.ui-datebox-gridplus, .ui-datebox-gridminus').bind('vclick', function(){
// To handle changing months
setColours();
//alert($('#mydate').data('datebox').theDate);
});
function setColours(){
$('div.ui-datebox-griddate[data-date=25][data-theme]').css({"background-color":"red", "background-image":"none", "color" : "white"});
$('div.ui-datebox-griddate[data-date=26][data-theme]').css({"background-color":"green", "background-image":"none", "color" : "white"});
$('div.ui-datebox-griddate[data-date=27][data-theme]').css({"background-color":"blue", "background-image":"none", "color" : "white"});
}
});
</script>