.postBody p, .postCon p {text-indent:0px;}
.postBody p, .postCon p {margin: 5px auto 5px auto;}
.postBody p,.postCon p{
margin: 0 auto 1em auto;
}
p{margin: 5px auto 5px auto;text-indent:0px;}
* {
margin: 0;
padding: 0;
}
.postBody h3 {
font-size: 120%;
margin: 15px auto 2px auto;
font-weight:bold;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
font-weight: normal;
}
.postBody a:link,.postBody a:visited,.postBody a:active{
color:#6466b3;
text-decoration:underline;
}
a:link {
color: #464646;
text-decoration: none;
}
.postBody img{
border:5px solid #FFFFFF;
border:none\9;
box-shadow:#333333 1px 1px 5px;
-moz-box-shadow:#333333 1px [...]
阅读全文
写一个在JS中生成Guid的函数
var emptyGuid=’00000000-0000-0000-0000-000000000000′
function newGuid() {
return emptyGuid.replace(/0+/g, function (o) {return Math.random().toString(16).substr(2, o.length)})
}
让Guid中只包含10进制数字:
var emptyGuid=’00000000-0000-0000-0000-000000000000′
function newGuid() {
return emptyGuid.replace(/0+/g, function (o) {return Math.random().toString().substr(2, o.length)})
}
阅读全文
今天修复系统后,浏览器死活不执行Javascript脚步,IE选项里已经启用,真是奇怪
搜了下,有很多朋友遇到同样的问题,一个朋友给出了解决办法,可以修复IE脚步运行
将以下内容复制到记事本,存为 ie.bat ,然后运行这个bat文件,即可搞到,其实也可以直接在命令行运行这些命令。
regsvr32 actxprxy.dll /s
regsvr32 shdocvw.dll /s
regsvr32 mshtml.dll /s
regsvr32 urlmon.dll /s
regsvr32 msjava.dll /s
regsvr32 shdocvw.dll /s
regsvr32 browseui.dll /s
regsvr32 actxprxy.dll /s
regsvr32 oleaut32.dll /s
regsvr32 shell32.dll /s
regsvr32 jscript.dll /s
阅读全文
我们太落伍了。Pranav Mistry这个印度天才的惊人创新,早在去年2月就被世界各大主流媒体包括新浪和我们CSDN自己所广泛报道( New York Times | WIRED News | FOX News | Slashdot | Engadget | 新浪 | CNET NEWS | The Sun | The Gazette | Le Monde | CSDN),而且他还获得了《MIT Technology Review》的TR35 2009年青年发明者大奖,而我们大多数人只是在将近一年后的这几天才意识到这项创新的震撼性。
阅读全文
fly
flyConfig
fly.lib.Function
fly.lib.Data
fly.lib.String
fly.lib.Event
fly.lib.Json
fly.lib.Ajax
fly.lib.Cookie
fly.ui.DomHelper
fly.ui.Style
fly.linq
fly.linq.IEnumerable
fly.ui.selector
fly.ui.selector.DomQuery
$.选择器.基本
$.选择器.层级
$.选择器.简单
$.选择器.内容
$.选择器.可见性
$.选择器.属性
$.选择器.子元
$.选择器.表单
$.选择器.表单对象属性
$.选择器.技巧
阅读全文
1. IE Developer Toolbar
微软出品,可以方便的查看、修改元素属性,帮助分析调试CSS、DOM结构,IE8已集成该工具
下载:http://www.microsoft.com/downloads/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&displaylang=en
2.FireBug
Firefox下的HTML、CSS、JS调试工具
下载:https://addons.mozilla.org/en-US/firefox/addon/1843
阅读全文
1.《CSS 滤镜参考手册》
一个不错的CSS滤镜帮助文档,chm格式,可显示实例效果。
下载:《CSS 滤镜参考手册》www.oo-css.cn .chm
2.《CSS 2.0 样式表中文手册》
chm格式
下载:《CSS 2.0 样式表中文手册》www.oo-css.cn .chm
3.《CSS3 完全参考手册》
chm格式
下载:《CSS3 完全参考手册》www.oo-css.cn .chm

