文章列表
一、CSS HACK
以下两种方法几乎能解决现今所有HACK.
1, !important
随着IE7对!important的支持, !important 方法现在只针对IE6的HACK.(注意写法.记得该声明位置需要提前.)
2, IE6/IE77对FireFox
*+html 与 *html 是IE特有的标签, firefox 暂不支持.而*+html ...
- 2009-07-30 01:04
- 浏览 2865
- 评论(0)
Fiddler
一个很强大的http流查看工具
http://www.fiddlertool.com/fiddler/
Httpwatch
数据分析工具,头消息接受/发送的查看,POST数据查看.等等
http://www.httpwatch.com
IE Developer Toolsbar
IE下的FireBug.HTML及CSS调试工具
http://www.windowsmarketplace.com/details.aspx?itemid=2695980
Companion.JS
IE下的javascript调试工具.福音啊!福音啊!!福音啊!!!
http://www.my-d ...
- 2009-07-30 01:00
- 浏览 889
- 评论(0)
首先,让我们看看两个特别的字符:’^’ 和 ‘$’ 他们是分别用来匹配字符串的开始和结束,一下分别举例说明
"^The": 匹配以 "The"开头的字符串;
"of despair$": 匹配以 "of despair" 结尾的字符串;
" ...
- 2009-07-27 17:07
- 浏览 5901
- 评论(0)
<input type=button value=后退 onclick=history.go(-1)>
<input type=button value=刷新 onclick=history.go(0)>
<input type=button value=前进 onclick=history.go(1)>
- 2009-07-26 14:02
- 浏览 752
- 评论(0)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; chars ...
- 2009-07-26 12:33
- 浏览 903
- 评论(0)
在火狐上样式可能有点问题,但这容易解决;按住方向键不放连续移动选择功能暂时没有,待高人解决
html代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=&q ...
- 2009-07-26 12:24
- 浏览 1329
- 评论(0)
jquery技巧总结
一、简介
1.1、概述
随着WEB2.0及ajax思想在互联网上的快速发展传播,陆续出现了一些优秀的Js框架,其中比较著名的有Prototype、YUI、jQuery、mootools、Bindows以及国内的JSVM框架等,通过将这些JS框架应用到我们的项目中 ...
- 2009-07-26 05:11
- 浏览 960
- 评论(0)