发布时间:2016-03-20 21:56:05
1. CSS Resets html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label.........【阅读全文】
发布时间:2016-03-20 20:46:47
在谷歌浏览器下 可以正常取得时间,在IE7下 却是 NaN。解决方法:function NewDate(str) { str = str.split('-'); var date = new Date(); date.setUTCFullYear(str[0], str[1] - 1, str[2]); date.setUTCHours(0, 0, 0, 0); return date; } 转载自:http://www.9958.pw/post/js_new_date.........【阅读全文】
发布时间:2016-03-20 19:25:51
iconv需要依赖native库,这样一来,在一些不支持native模块安装的虚拟主机和windows平台上,我们还是无法安心处理GBK编码。 老外写了一个通过纯Javascript转换编码的模块 iconv-lite可以实现window下的转换 ,通过npm可以安装此模块,bufferhelper是一个操作buffer的加强类首先安装npm install iconv-litenpm install .........【阅读全文】
发布时间:2016-03-20 14:28:42
jQuery获取Select元素,并选择的Text和Value: 1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发 2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text 3. var checkValue=$("#select_id").val(); //获取Select选择的Value 4. va.........【阅读全文】
发布时间:2016-03-19 22:05:04
盒子标签和属性对照CSS语法(不区分大小写) JavaScript语法(区分大小写)border borderborder-bottom borderBottomborder-bottom-color borderBottomColorborder-bottom-style borderBottomStyleborder-bottom-width borderBottomWidthborder-color borderColorborder-left borderL.........【阅读全文】