http://blog.snsgou.com/post-16.html作者:SNSGOU发布于:2013-07-17
22:23:05 分类:CSS/HTML
评论(0)浏览(1323)IE8及以后的IE9/IE10浏览器,为了实现IE兼容基于其它网页标准开发的网站,IE浏览器还专门提供了“兼容性视...
分类:
Web程序 时间:
2014-05-19 19:29:40
阅读次数:
803
核心思路:标准浏览器(含IE9+)比较简单,直接监听DOMContentLoaded事件;低版本的IE(IE678)两套机制:1)尝试轮询document.documentElement.doScroll("left")是否报错,若报错则dom树结构未ready,否则dom
ready;2)监听do...
分类:
其他好文 时间:
2014-05-19 18:46:52
阅读次数:
214
原文兼容Firefox和IE的onpropertychange事件oninputonpropertychange能够捕获每次输入值的变化。例如:对象的value值被改变时,onpropertychange能够捕获每次改变,而onchange需要执行某个事件才可以捕获。在文本框输入数据的时候,当键盘按...
分类:
其他好文 时间:
2014-05-19 18:05:01
阅读次数:
181
原文: JS如何判断包括IE11在内的IE浏览器
今天碰到一个奇怪的问题,有一个页面,想指定用IE浏览器打开,在VS开发环境没有问题,但部署到服务器上,即使是用IE打开页面,还是提示“仅支持IE”,真是晕啊!!判断是否IE浏览器用的是window.navigator.userAgent,跟踪这个信息...
分类:
Web程序 时间:
2014-05-19 17:51:29
阅读次数:
315
由于本人比较喜欢用Google香港作为自己的默认搜索引擎,Chrome里面可以轻松设置。但是在IE里面,默认的搜索引擎为Bing搜索,要更改或者添加默认的搜索引擎非常简单,步骤如下设置
--> 管理插件(Manage add-ons) --> 点击下面的"查找更多搜索提供者"但是这个微软官网提供的搜...
分类:
其他好文 时间:
2014-05-19 17:46:54
阅读次数:
276
Insert title
herehttp://root:admin@192.168.1.1:880/user.asp?user=1234567&pwd=123&state=32&gid=0&opt=add只支持火狐、google、手机等浏览器,不支持IE可以注册为pppoe用户,也可以注册为web...
分类:
其他好文 时间:
2014-05-19 16:58:08
阅读次数:
375
项目中有一个功能 在IE中GET方式提交会产生乱码 但有两个入口都会走这同一段代码固不能直接转码,所以要进行判断传过来的该值是不是乱码可用以下方式验证:java.nio.charset.Charset.forName("GBK").newEncoder().canEncode("测试") //判断是不是GBK编码 即是否乱码//使用request.getQueryString()获取通过URL传过...
分类:
编程语言 时间:
2014-05-18 14:38:27
阅读次数:
271
Binary Tree Level Order Traversal
Total Accepted: 12441 Total
Submissions: 40879My Submissions
Given a binary tree, return the level order traversal of its nodes' values. (ie, from left t...
分类:
其他好文 时间:
2014-05-18 10:11:13
阅读次数:
337
【题目】
Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.
If such arrangement is not possible, it must rearrange it as the lowest possible order (ie, sorted in ascending order).
The replac...
分类:
其他好文 时间:
2014-05-18 09:54:53
阅读次数:
242
【题目】
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.
Note:
Elements in a triplet (a,b,c) must be in non-descending order. (ie, a ≤ b ≤ c)
The so...
分类:
其他好文 时间:
2014-05-18 03:15:50
阅读次数:
287