"/>

jQuery创意网站建设中即将开放倒计时代码

184
0
jQuery倒计时倒计时代码网页倒计时
jQuery创意网站建设中即将开放倒计时代码,你也可以调整一下用到别的地方,网页倒计时效果还是比较常用的。
<script type="text/javascript" src="js/jquery-1.3.2.js"></script> 
<script type="text/javascript" src="js/jquery.countdown.js"></script> 
<script type="text/javascript" src="js/DD_belated.js"></script> <!--IE6 png图片处理-->
<script type="text/javascript">
$(function () {
	$('#defaultCountdown').countdown({
		since: new Date(2018, 7-1, 20, 0, 0, 0 ),// change this date to match yours, format is year, month-1, day, hour(24), min, sec
		format: 'ODHMS'
	});
});
</script>