我试图让dateFormat
jtsage的jQuery的移动DateBox插件工作的选项。 我有一个HTML文档中下面的代码:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<link rel="stylesheet" type="text/css" href="http://dev.jtsage.com/cdn/datebox/latest/jqm-datebox.min.css" />
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
<script src="http://dev.jtsage.com/cdn/datebox/latest/jqm-datebox.core.min.js"></script>
<script src="http://dev.jtsage.com/cdn/datebox/latest/jqm-datebox.mode.calbox.min.js"></script>
<script src="http://dev.jtsage.com/cdn/datebox/i18n/jquery.mobile.datebox.i18n.en_US.utf8.js"></script>
</head>
<body>
<div data-role="page">
<input type="date" name="date" data-role="datebox" data-options='{"mode":"calbox","dateFormat":"%b %d"}' />
</div>
</body>
</html>
有两个部分,以我的问题:
值
dateFormat
是基于此页面上: http://dev.jtsage.com/jQM-DateBox/demos/api/dateformat.html 。 我期待选择一个日期,它会显示在dateFormat
,即1月2日,3月29日,等等。这是正确的,或者它应该是不同的使用? 与此代码,在像2012/1/2的格式选择日期的结果,2012年3月29日,等我们在数据库中存储与我们想要的日期选取器显示的内容的价值是不同的,即2012-01-02 => 1月2日,1月2日=> 2012-01-02。 这可能吗?
提前致谢。