我正在添加jquery 移动日期选择器,但它默认显示日期选择器。相反,我希望它只显示在焦点上,并在字段失去焦点时隐藏起来......知道怎么做吗?
在我添加的页眉中
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<link rel="stylesheet" href="/css/jquery.ui.datepicker.mobile.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script>
//reset type=date inputs to text
$( document ).bind( "mobileinit", function(){
$.mobile.page.prototype.options.degradeInputs.date = true;
});
</script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script src="/js/jQuery.ui.datepicker.js"></script>
<script src="/js/jquery.ui.datepicker.mobile.js"></script>
以及正文中的日期字段以使其工作:
<label for="date">Date Input:</label>
<input type="date" name="date" id="date" value="" />