Category Archives: 页面JS相关

js、jquery等等页面特效。

Form表单验证--最简单版本

输入框动态提示,提交前逐项验证填写状态,简单记录一下,备查。
<STYLE type="text/css">
.formone_left{float:left; width:110px; padding:0 14px 0 

网页音乐播放解析

方式一: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);