gpt4 book ai didi

jquery-ui - jquery datepicker 动画选项不起作用

转载 作者:行者123 更新时间:2023-12-03 18:27:27 25 4
gpt4 key购买 nike

我有一个文本框,其中注册了 JQuery UI DatePicker 控件。它工作正常,但是当我尝试添加动画选项时,控件本身不起作用。

<head runat="server">
<script>
$(document).ready(function() {
$("#TextBox1").datepicker("option", "showAnim", 'slideDown');
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</div>
</form>
</body>

如果没有选项,选择器至少会显示自己。有人可以告诉我一个更好的解决方案,发生了什么?
谢谢!

最佳答案

init 后定义选项:

// initialization (~= constructor)
$("#TextBox1").datepicker();
// set options
$("#TextBox1").datepicker("option", "showAnim", 'slideDown');

或同时:
// initialization + options (~= constructor with args)
$("#TextBox1").datepicker({showAnim: 'slideDown'});

要调整它的大小,请在 <link> 之后将此样式添加到您的 html 文件中到 jquery.ui.all.css (或在您的自定义 .css 中):
<style type="text/css">
div.ui-datepicker{
font-size:...px;
}
</style>

关于jquery-ui - jquery datepicker 动画选项不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5427539/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com