jquery 的日期时间控件(年月日时分秒)

控件的外观很漂亮,但是需要导入几个jquery的包才行,在IE6中运行稍微有些慢

注:例子中出现的jquery-ui-1.7.3是jquery的插件,包含了日期控件的国际化和一些动画特效,下载地址: http://jqueryui.com/

<!-- import package -->
<script type="text/javascript" src="JS/jquery.js"></script>
<script type="text/javascript" src="JS/jquery-ui-1.7.3/ui/jquery-ui-1.7.3.custom.js"></script>
<script type="text/javascript" src="JS/jquery-ui-1.7.3/ui/ui.datepicker.js"></script>
<script type="text/javascript" src="JS/jquery-ui-timepicker-addon.js"></script>
<link type="text/css" href="CSS/jquery-ui-1.7.3/redmond/jquery-ui-1.7.3.custom.css" rel="stylesheet" />

<script type="text/javascript">
	$('#dyStartDateTime').datetimepicker({
		showSecond: true,
		changeMonth: true,
		changeYear: true,
		timeFormat: 'hh:mm:ss',
		dateFormat: 'yy-mm-dd'
	});
	$('#dyEndDateTime').datetimepicker({
		showSecond: true,
		changeMonth: true,
		changeYear: true,
		timeFormat: 'hh:mm:ss',
		dateFormat: 'yy-mm-dd'
	});
</script>

你可能感兴趣的:(jquery 的日期时间控件(年月日时分秒))