Monthly Archives: 10 月 2013

网页音乐播放解析

方式一:embed 因为微软出了N多IE版本,且对HTML5 标签支持不一,因此不能简单的用
<embed src='xxx'  width="20" height="20" autostart="true"

纯JS 倒计时

//改成你的计时日期,格式为MM-DD-YYYY showtime("10-08-2014"); function showtime(tian){
window.setTimeout("showtime('"+tian+"')", 10000);
BirthDay=new Date(tian);