
HTML
iteye_5974
这个作者很懒,什么都没留下…
展开
-
jQuery serializeArray() 方法无效, 不起作用, 得不到数组
[b]jQuery.serializeArray() 方法无效, 不起作用, 得不到数组[/b]其中一种比较诡异的情况是:[code="html"][/code][size=large][color=red][b]当checkbox没有name属性值, jquery的serializeArray方法会忽略这个input[/b][/color][/size]...原创 2013-05-10 14:59:23 · 1125 阅读 · 0 评论 -
Node cannot be inserted at the specified point in the hierarchy
今天搞代码firefox下发现一个报错:Timestamp: 2012-12-24 18:04:15Error: HierarchyRequestError: [b]Node cannot be inserted at the specified point in the hierarchy[/b]Source File: http://localhost:9002/publi...2012-12-24 18:35:43 · 290 阅读 · 0 评论 -
IE6背景图片重绘
今天用jquery做一个块滑动效果, 发现ie6每次动作都要重新下载背景图片, 只是DT速度百度, 发现如下两种解决办法[code="javascript"]document.execCommand("BackgroundImageCache",false,true);[/code][code="css"]filter: expression(doc...原创 2012-06-22 10:58:56 · 110 阅读 · 0 评论 -
Google地图API使用demo
[code="html"] API3_DrawCircle var map = null; var cicles=new Array();//所有圆集合function displayMap(){ var myOptions = { zoom: 12, center: new google.maps.LatLng(22.5...原创 2012-06-13 09:33:45 · 352 阅读 · 0 评论 -
DIV 遮住select input
[code="html"] item 1 item 2 item 3 item 4 item 5 menu A form selection list [/code]原创 2012-06-08 14:40:29 · 377 阅读 · 0 评论 -
IE6中使用PNG, 透明
使用方法:[code="html"][/code]第一种方法, 基于jQuery[code="js"]$("img").each(function(n){ var img = this; var imgName = img.src.toUpperCase(); if (imgName.substring(imgName.length-3, imgNa...原创 2012-06-01 14:43:00 · 103 阅读 · 0 评论 -
CSS命名规范
CSS命名规范 一.文件命名规范 全局样式:global.css(common.css; base.css); 框架布局:layout.css; 字体样式:font.css; 链接样式:link.css; 打印样式:print.css; 二.常用类/ID命名规范 页头:header登录条:loginBar标志:logo侧栏:side...原创 2013-08-05 10:14:25 · 117 阅读 · 0 评论 -
原色大辞典
[code="html"]a {text-decoration: none;}a:hover {text-decoration:underline;}.tableborder{border-collapse: collapse;}.tdborder{border: solid 1px #000000;}td{/*font-weight:bold;*/font...原创 2012-08-19 23:18:48 · 156 阅读 · 0 评论 -
和色大辞典
[code="html"]a {text-decoration: none;}a:hover {text-decoration:underline;}.tableborder{border-collapse: collapse;}.tdborder{border: solid 1px #000000;}td{/*font-weight:bold;*/fo...原创 2012-08-19 23:17:57 · 279 阅读 · 0 评论 -
根据userAgent值的特性判断客户端设备及浏览器类型
[b]文章写的太好了, 直接转了[/b] 原文链接:http://www.cnblogs.com/dowinning/archive/2011/07/22/2113981.html前文《Web开发兼容性系列文章(一):不同设备浏览器的userAgent值大全》罗列了常用电脑浏览器及智能手机浏览器的userAgent值这里对浏览器各自的userAgent特点做一分析,并给...原创 2013-01-11 09:55:51 · 553 阅读 · 0 评论