=波 波 日 志=
[原]IE解析XML文档碰到DTD声明出错
IE解析XML文档碰到DTD声明出错 在IE浏览器下查看xml文件,如果使用了DTD外部申明,DTD文件中如果有中文字符,则DTD文件需要存储为utf-8的编码,要不在IE下浏览使用了外部申明的XML文件时,解析DTD文件会出错。 而使用内部的 DOCTYP
【类型:HTML/WML/CSS兼容 发表时间:2010-07-21 评论:0 阅读:12】
[转]换行问题解决方案CSS FireFox and IE
大家都知道连续的英文或数字会把DIV或表格边框撑破,不能根据容器的大小自动换行,下面是 CSS如何将他们换行的方法! 下面是一些常用的控制CSS换行的+展开-CSS/*禁止换行*/.nowrap{word-break:keep-all;white-space:nowrap;}/*强制
【类型:HTML/WML/CSS兼容 发表时间:2010-07-14 评论:0 阅读:48】
[原]跨浏览器CSS编码准则
第一:理解css盒子模型(学习div+css布局也是很重要的,学会的css的盒子模型学习div+css也就不难了) 透彻地理解 CSS 盒子模型是首要事情,CSS 盒子模型并不难,且基本支持所有浏览器,除了某些特定条件下的 IE 浏览器。CSS 盒子模
【类型:HTML/WML/CSS兼容 发表时间:2010-07-12 评论:0 阅读:8】
[转]Opera10下的31个bug
来源:31 bugs inOpera10 for Windows1- A col's width must include a table's cellpadding. This is a regression bug since Opera 6.06 had it correct, right. See bug 285490 in Opera BTS.2- When hovering over a text node withi
【类型:HTML/WML/CSS兼容 发表时间:2010-07-02 评论:0 阅读:14】
[转]IE8下的60个bug
来源:60 bugs inIE8 for Windows1- MSIE 8 requests automatically favicon.ico. Internet Explorer 8 should stop automatically requesting for favicon.ico in the root directory - a file which may not exist - and instead look
【类型:HTML/WML/CSS兼容 发表时间:2010-07-02 评论:0 阅读:24】
[转]IE7下的185个bugs
来源:185 bugs inIE7 for Windows1- Non-defined value of option is not set to the contents of the OPTION element Firefox 1.x, Firefox 2.x, Opera 9.x, Safari 2, Safari 3.0.2, Konqueror 3.5.8, Seamonkey 1.x, Seamonkey 2.x,
【类型:HTML/WML/CSS兼容 发表时间:2010-07-02 评论:0 阅读:7】
[转]IE6下的119个bug
来源:119 bugs inIE6 for Windows1- Non-defined value of option is not set to the contents of the OPTION element Firefox 1.x, Firefox 2.x, Seamonkey 1.x, Opera 9.x, Safari 2, Safari 3.0.2, K-meleon 1.x, Konqueror 3.5.8, G
【类型:HTML/WML/CSS兼容 发表时间:2010-07-02 评论:0 阅读:10】
[转]关于IE的layOut bug
在开发中我们常会在ie中遇到很多莫名的bug,尤其是ie6这个早就该退出历史的浏览器。刚刚在haslayout.net上看到有总结ie的一些 bug,分享一下。1.图片label bug,影响版本ie6/ie7/ie8,当label中有img的时候无法触发点击选中form元素事
【类型:HTML/WML/CSS兼容 发表时间:2010-07-02 评论:0 阅读:79】
[转]a标签的伪类书写顺序
问题描述 曾经在调试自己的网页是发现过一个问题,链接的文字只有在 IE6 下当鼠标移到上面的时候会变色,在 IE7、IE8 和其它浏览器里都不变色,感觉很奇怪。先来看一下我原来的代码:+展开-HTML!DOCTYPEhtmlstyletype="text/css"a:hov
【类型:HTML/WML/CSS兼容 发表时间:2010-06-30 评论:0 阅读:50】
[转]样式的特性及优先级别
所谓的特殊性是指,作用于同一元素的同一特性 (property)的不同选择器的多个值,哪个会起作用,特殊性值最高的会起作用。比如,如下代码中,多个样式中的 'background-color' 同时作用于同一个 DIV 元素,那么最后,到底 DIV 应该会是
【类型:HTML/WML/CSS兼容 发表时间:2010-06-30 评论:0 阅读:16】
[原]添加了DOCTYPE XHTML声明时设置绝对位置对象需要加单位
在Firefox,IE下,如果添加了DOCTYPE,XHTML声明,则要设置display为absolute,绝对位置的对象时,需要加上单位,如px,要不没有效果,测试用例如下+展开 -HTML!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.
【类型:HTML/WML/CSS兼容 发表时间:2010-06-24 评论:0 阅读:18】
[原]Firefox下浮动布局时空白边叠加问题
在Firefox下,如果采用div+css浮动控制页面布局时,如果一个div设置了margin-top,并且使用clear:both清除浮动时,margin-top并未显示出来,而是和处于其上面的浮动div叠加在一起了。源代码如下所示,结果如图1所示+展开-HTMLstylet
【类型:HTML/WML/CSS兼容 发表时间:2010-05-19 评论:0 阅读:44】
[原]防止选择,兼容ff和ie
防止用户选择页面的内容,阻止系统右键弹出菜单+展开-HTMLscriptdocument.oncontextmenu=function(){returnfalse;}document.onselectstart=function(){returnfalse;}//这个函数是对ie/scriptstylehtml,body{height:100%;width:100%;paddi
【类型:HTML/WML/CSS兼容 发表时间:2010-05-10 评论:0 阅读:17】
[原]firefox下图片拖动的问题
Firefox下拖动图片时,如果onmousedown函数未return false,document.onmousemove事件不响应,反而mouseup后响应document.onmousemove事件,晕掉~~ return false后,Firefox下的obj.captureEvent和ie下的obj.setCapture有很大区别
【类型:HTML/WML/CSS兼容 发表时间:2010-05-06 评论:0 阅读:60】
[转]selection Object
Represents the active selection, which is a highlighted block of text or other elements in the document that a user or a script can carry out some action on.Members TableThe following table lists the members exposed by t
【类型:HTML/WML/CSS兼容 发表时间:2010-04-30 评论:0 阅读:11】
[转]Selection Prototype
Defines the properties and methods inherited by objects in the Selection prototype chain. SyntaxHTMLN/AScriptingSelection.prototypeMembers TableThe following table lists the members exposed by the Selection Constructor o
【类型:HTML/WML/CSS兼容 发表时间:2010-04-30 评论:0 阅读:7】
[转]createTextRange Method
Creates a TextRange object for the element.SyntaxoTextRange = object.createTextRange()Return ValueReturnsa TextRange object if successful, or null otherwise. RemarksUse a text range to examine and modify the text within
【类型:HTML/WML/CSS兼容 发表时间:2010-04-30 评论:0 阅读:35】
[转]TextRange Object
TextRange ObjectRepresents text in an HTML element. Members TableThe following table lists the members exposed by the TextRange object.Attributes/PropertiesPropertyDescriptionboundingHeightRetrieves the height of the rec
【类型:HTML/WML/CSS兼容 发表时间:2010-04-30 评论:0 阅读:22】
[转]createRange Method
Creates a TextRange object from the current text selection, or a controlRange collection from a control selection. Syntaxrange = object.createRange()Return ValueReturnsthe created TextRange object.Standards InformationTh
【类型:HTML/WML/CSS兼容 发表时间:2010-04-30 评论:0 阅读:9】
[转]createControlRange Method
Creates a controlRange collection of nontext elements. SyntaxoControlRange = object.createControlRange()Return ValueReturns a controlRange collection if sucessful or a null value otherwise.RemarksCreates a selection rang
【类型:HTML/WML/CSS兼容 发表时间:2010-04-30 评论:0 阅读:12】
[转]controlRange Collection
controlRange CollectionA collection of elements returned by the createControlRange or createRange method.Members TableThe following table lists the members exposed by the controlRange object.Attributes/PropertiesProperty
【类型:HTML/WML/CSS兼容 发表时间:2010-04-30 评论:0 阅读:5】
[转]在Web页面中控制其元素的选择状态
测试浏览器为IE 为了在Web页面上使用文本搜索,在文本框内实现选择效果,在页面上屏蔽选择状态等。我们需要使用脚本(如JavaScript)来精确的控制页面中UI元素的选择状态。下面从操作元素选择区和屏蔽元素被选择两个方面来说一说。 操
【类型:HTML/WML/CSS兼容 发表时间:2010-04-30 评论:0 阅读:39】
[转]第六章 WML Script标准函数库(下)
6.5 URL函数库名称:URL说明:这个函数库包含了处理绝对的URL与相对URL的程序,一般的URL语法如下:://:/;?#isValid程序:isValid(url)说明:如果给予的url值是正确的URL语法,则回传ture,否则回传false绝对与相关URL都能支持相关URL不
【类型:HTML/WML/CSS兼容 发表时间:2010-04-12 评论:0 阅读:27】
[转]第六章 WML Script标准函数库(上)
这节会讨论标准的WML Script函数库。6.1 WML Script规则这些标准函数库提供一个扩展WML Script语言的机制,这些特定的函数库必须遵循WML Script的规则。支持的数据格式下面的WML Script格式使用于程序的定义之中,这样能记录程序参数与回
【类型:HTML/WML/CSS兼容 发表时间:2010-04-12 评论:0 阅读:21】
[转]第五章 WMLScript脚本程序设计(下)
5.2 函数的声明与调用在WML Script中,函数是一种能够完成某种功能的代码块,并可以在脚本中被事件处理或被其他语句调用,也可以被WML程序所处理和调用。一般地,当我们编写WML Script脚本时,如果脚本中的代码长度还是很长,则一般还可以
【类型:HTML/WML/CSS兼容 发表时间:2010-04-12 评论:0 阅读:17】
热门博文
- ·CLIP: rect 是什么?
- ·CSS背景拉伸
- ·object和embed的区别
- ·URL转码方法及不能被..
- ·firefox通过XUL实现..
- ·text-overflow:elli..
- ·document.execComma..
- ·firefox 支持自定义..
- ·Microsoft.AlphaIma..
- ·CSS滤镜:颜色渐变[微..
博格Tag
- flash/flex/fcs/AIR(750)
- Asp.Net/C#/WCF(476)
- JavaScript/Ajax(232)
- 操作系统及应用软件(206)
- SQL及数据库(105)
- 黑客技术(96)
- Asp/VBScript(85)
- 网站排名及优化(82)
- PHP/apache/Perl(72)
- HTML/WML/CSS兼容(65)
- 其他(59)
- 个人日志(44)
- lucence.net/分词技术(33)
- C#设计模式(22)
- 计算机网络(17)
- 日语学习(15)
- Canvas/VML/SVG(13)
- linux(10)
- 游戏开发(8)
- 正则表达式(5)
- Jsp/Java(4)
归档(2399)
声明:本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果我们转载或引用的作品侵犯了您的权利,请通知我们,我们会及时删除!
Powered by showbo,G51人力资讯网,桂ICP备05005887号
Powered by showbo,G51人力资讯网,桂ICP备05005887号
