摘要:
在网站开发中不免因为各种兼容问题苦恼,针对兼容问题,其实IE给出了解决方案Google也给出了解决方案百度也应用了这种方案去解决IE的兼容问题百度源代码如下;百度一下,你就知道 可以打开百度,右键查看源码看下!我们可以看下文件头是否存在这样一行代码!这句话的意思是强制使用IE7模式来解析网页代码!在... 阅读全文
摘要:
php测试代码ajax封装代码//封装ajaxfunction ajax(obj){ var xhr = createXHR(); obj.url = obj.url + '?rand=' + Math.random(); obj.data = params(obj.data); ... 阅读全文
摘要:
//设置cookiefunction setCookie(name,value,expires,path,domain,secure){ var cookieName = encodeURIComponent(name) + '=' + encodeURIComponent(value); ... 阅读全文
摘要:
jstest 姓名: dsfsafsdafdsafdf dsfsd //跨浏览器添加事件function addEvent(obj,type,fn){ if(obj.addEventLis... 阅读全文
摘要:
jstest 姓名: dsfsafsdafdsafdf dsfsd base.js//跨浏览器添加事件function addEvent(obj,type,fn){ if(obj.addEventListener){ ob... 阅读全文
摘要:
html代码jstest 测试div css代码@charset "utf-8";.red{width:100px; height:100px; background:#f00;}.blue{width:100px; height:100px; background: blue;... 阅读全文
摘要:
function addEvent(obj,type,fn){ //用于保存上一个事件 var saved = null; //判断是否存在 if(typeof obj['on' + type] == 'function'){ saved = obj['on' ... 阅读全文
摘要:
window.onload = function(){ document.onkeypress = function(evt){ var e = evt||window.event; console.log(getCharCode(evt)); };}func... 阅读全文
摘要:
在操作class时,往往需要叠加或者删除一个class,这里用原生javascript写了一种方法,以供参考。这里是html代码DOM操作表格及样式测试Div这里是非常简单的css代码,只为了测试.aaa{ font-size: 20px;}.bbb{ color: green; ... 阅读全文
摘要:
//动态原型模式function Box(name,age){ this.name = name; this.age = age; this.family = ['哥哥','姐姐','妹妹']; if(typeof this.run != 'function'){ ... 阅读全文