我想在锚标签中显示datepicker.Now datepicker显示onclick.but我没有隐藏。我想在切换效果中执行此操作。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Datepicker - Display inline</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.3/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
$(document).ready(function(){
$("a").click(function(){
$( "#datepicker" ).datepicker();
});
});
</script>
</head>
<body>
<a id="test">click here</a>
<div id="datepicker"></div>
</body>
</html>
我想显示datepicker当我点击'click here'文本并隐藏datepicker div时,我第二次点击文本。我想在点击我的toggele效果中显示datepicker。
答案 0 :(得分:1)
这可以帮到你:
var $dp = $( "#datepicker" );
$dp.datepicker().hide();
$("a").click(function(event){
event.preventDefault();
if ($dp.is(':hidden')) {
$dp.show();
}else{
$dp.hide();
}
});
这将仅对datepicker初始化一次,并立即隐藏它。
答案 1 :(得分:1)
您可以在锚点和文档点击上以编程方式切换datepicker可见性。
代码:
$(document).ready(function () {
$("#datepicker").datepicker();
$("a").click(function (e) {
e.stopPropagation();
$("#datepicker").toggle();
});
$(document).click(function () {
$("#datepicker").hide();
})
});
答案 2 :(得分:0)
我认为1选项是在选择日期后销毁日期选择器。
jQuery(function($) {
var $dp = $("#datepicker");
$(".aastext").click(function() {
if ($dp.hasClass('hasDatepicker')) {
$dp.datepicker("destroy");
} else {
$dp.datepicker({
changeYear: true,
changeMonth: true,
onSelect: function() {
setTimeout(function() {
$dp.datepicker("destroy");
});
}
});
}
});
});
&#13;
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js"></script>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/redmond/jquery-ui.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.js"></script>
<a class="aastext">click here</a>
<div id="datepicker"></div>
&#13;