实时监听输入框值变化:oninput & onpropertychange
摘要:结合 HTML5 标准事件 oninput 和 IE 专属事件 onpropertychange 事件来监听输入框值变化。 oninput 是 HTML5 的标准事件,对于检测 textarea, input:text, input:password 和 input:search 这几个元素通过用户
阅读全文
posted @
2016-06-28 17:08
vofill-work
阅读(265)
推荐(0)
jquery 获取日期时间
摘要:获取JavaScript 的时间使用内置的Date函数完成 var mydate = new Date();mydate.getYear(); //获取当前年份(2位)mydate.getFullYear(); //获取完整的年份(4位,1970-????)mydate.getMonth(); //
阅读全文
posted @
2016-06-24 14:51
vofill-work
阅读(1437)
推荐(0)
JS实现转动效果
摘要:方案一 <div class="div_uploading"> <div class="div_uploading_scroll"></div> <div class="div_uploading_content"></div> </div> CSS样式 @keyframes scroll { 0%
阅读全文
posted @
2016-06-23 11:44
vofill-work
阅读(1846)
推荐(0)