在网页程序中,有时我们会希望使用者按下按钮后开启一个保持在原窗口前方的子窗口,而在IE中,我们可以使用showModalDialog来达成,语法如下 : vReturnValue = window.showModalDialog(sURL [, vArguments] [, sFeatures]) 范例: window.showModalDialog("openwin.html","Arguments","dialogHeight: 200px; dial…
firefox不支持background-position-x background-position-y,使用background-position:5px 5px;…
Firefox 32 支持 Public Key Pinning 对抗中间人攻击.8月28日消息,即将发布的Firefox 32将支持Public Key Pinning机制,以防止中间人攻击.Public Key Pinning机制允许网站详细说明网站的有效证书是哪一家CA发行的,不再随便接受Firefox证书管理器内的数百家Root CA之一发行的证书.这一机制可以抵御中间人攻击和恶意CA.如果证书不匹配,Firefox将会显示出错信息,拒绝连接.Firefox  32将会默认启用Pinni…
兼容firefox,ie,谷歌,阻止浏览器冒泡事件,Firefox不支持event解决方法 // 获取事件function getEvent(){ if(window.event) {return window.event;} func=getEvent.caller; while(func!=null){ var arg0=func.arguments[0]; if(arg0){ if((arg0.constructor==Event || arg0.constructor ==MouseEv…
转自:http://qsrock.iteye.com/blog/209585 function test(){ var perid = document.thisForm.PerID.value; var xml="test"; if(window.ActiveXObject){ var xml=new ActiveXObject("Microsoft.XMLDOM"); xml.async=false; xml.load("xxxx.xml")…
CSS的positon,我想做为一个Web制作者来说都有碰到过,但至于对其是否真正的了解呢?那我就不也说了,至少我自己并不非常的了解其内核的运行.今天在Learn CSS Positioning in Ten Steps一文中分十步介绍了CSS的“position”中的“static.relative.absolute.float”使用,觉得蛮有意思的.整理了一下贴上来与大家一起分享.希望大家能喜欢. 在图解这十个过程之前,我将实例的代码放上来,好让大家一个实体参考: HTML Markup 1…
<!DOCTYPE html> <!--CSS中position属性--> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .pg-header{ height: 50px; background-color: black; color: #dddddd; positi…
转载声明: 请注明本文引用自http://www.cnblogs.com/guolizhi/ css中-webkit-line-clamp这个属性表示超过指定行的文本隐藏并且会在结尾加上...号,用起来十分快捷.但是该属性只支持Chrome,在IE, FireFox下都无效. 解决方案:可以用一种比较这种的方式来处理 p { height: 3.6em; font-size: 16px; color: #999; line-height: 1.8; overflow: hidden; posit…
如有问题,请前往 http://www.cnblogs.com/dreamowneryong/p/4953911.html 原文评论交流 一,属性介绍 * minChars (Number) 在触发autoComplete前用户至少需要输入的字符数.Default: 1,如果设为0,在输入框内双击或者删除输入框内内容时显示列表 * width (Number) 指定下拉框的宽度. Default: input元素的宽度 * max (Number) autoComplete下拉显示项目的个数.D…
innerText和InnerHTML是非常实用的一个属性,然而在FireFox中不支持此属性,可能是因为考虑到网页的安全性.这样一来为开发者带来了不少麻烦.FireFox中也提供了另外一个属性innerContent,功能与innerText相当.据此可写出一个通用的支持IE与FireFox的方法 <script type=”javascript”>if(window.navigator.userAgent.toLowerCase().indexOf(“firefox”)!=-1){    …