我的日期选择器不会在下面弹出,它总是向上打开,我不知道为什么,因为在ui jquery演示中,datepicker向下打开。
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script>
$(document).ready(function() {
orientation: "top auto"
$(".datepicker").datepicker();
});
</script>
<div id="div4">
<p>What date do you wanna get outta here?</p>
<input class = "datepicker" name = "outboundDate" /><br>
</div>
答案 0 :(得分:0)
欢迎使用Stack Overflow。
您的语法看起来不正确。我相信你应该使用:
$(document).ready(function() {
$(".datepicker").datepicker({
orientation: "top auto"
});
});
检查您的JS控制台是否还有任何其他警报或错误报告。