本文目录一览

1,想要在网页中添加一个日历要怎么做

去这里面看吧,有日历控件的例子,插件等:http://www.cnblogs.com/xiaoyao2011/archive/2011/10/23/JSDatePicker.html
先学会使用工具dreamweaver,打好html基础。做简单的静态网页。同时学习photoshop和imageready,熟悉图像处理。然后做漂亮的简单静态页面,将ps, imageready, dw综合起来应用。然后学javascript,asp,php,……

想要在网页中添加一个日历要怎么做

2,我想在html中实现显示当前日期的功能应该怎么做

HTML里面都是调用javascript才能显示可变化的内容,当前日期的代码可以这样写:<script language=JavaScript> today=new Date(); document.write( today.getYear(),"年", today.getMonth()+1,"月", today.getDate(),"日 " ); </script>
<html><body><script type="text/javascript">document.write(Date().toLocaleString());</script></body></html>

我想在html中实现显示当前日期的功能应该怎么做


文章TAG:怎么  html  日历  想要  怎么用html来做日历  
下一篇