gpt4 book ai didi

c# - jQueryMobile Datebox 不会采用默认日期值 - 尝试了一切

转载 作者:行者123 更新时间:2023-11-30 22:32:07 25 4
gpt4 key购买 nike

我正在尝试以对话模式打开 jQueryMobile 日期框。我正在尝试将日期框设置为默认值,但由于某种原因它不会接受它。这是我的代码:

<!DOCTYPE html> 
<html>
<head>
<meta charset="utf-8" />
<title>@PageData["Title"]</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<link rel="stylesheet" type="text/css" href="http://dev.jtsage.com/cdn/datebox/latest/jquery.mobile.datebox.min.css" />
<link rel="stylesheet" href="@Href("/Styles/theme/mysite.min.css")" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
<script src="http://dev.jtsage.com/cdn/datebox/latest/jquery.mobile.datebox.min.js"></script>
<script type="text/javascript" src="http://dev.jtsage.com/cdn/datebox/i8n/jquery.mobile.datebox.i8n.en.js"></script>
</head>
<body>
<script type="text/javascript">
$('document').ready(function(){
//Setting start date value on pageload
$('#myqdate').value('2012-01-14');
$('#myqdate').datebox('refresh');
}
</script>

<form name="shiftform" id="shiftform" action="@Href("~/Account/QChanges.cshtml")" method="post">
<div data-role="fieldcontain">
<label for="myqdate">Date:</label>
<input name="myqdate" id="myqdate" type="date" value="" data-role="datebox" data-options='{"mode": "flipbox", "forceInheritTheme": true, "defaultDate":"2012-01-14"}'>
</div>
<input type="submit" value="Get Queue"/>
</form>
</body>
</html>

非常感谢专家的帮助。

谢谢

最佳答案

应该这样做:

$('#myqdate').trigger('datebox', {'method':'set', 'value':'2012-01-14', 'date':new Date('2012-01-14')})

关于c# - jQueryMobile Datebox 不会采用默认日期值 - 尝试了一切,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8861841/

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