attribute和property兼容性分析
上一篇文章中,详细的分析了他们的区别,请看Javascript中的attribute和property分析
这次,来详细的看下他们的兼容性,这些内容主要来自于对于jQuery(1.9.x)源代码的分析(attributes模块),首先,贴出测试的HTML代码:
<input id="username" type="text" value="lonelyclick"> <button value="abc" id="btn">def</button>
<button id="btn2">btn2222</button>
<button id="btn3">btn3</button> <div style="color:blue;" id="box">box</div> <a href="/get.do" id="baidu">baidu</a>
<img src="../../bootstrap/images/backbone.png" alt="backbone" id="backbone"> <select id="selecteddd">
<option>option1</option>
</select> <input type="checkbox" id="checkonElement">
下面开始逐一的分析jQuery中attributes模块中关于兼容性的处理:
兼容点1:
- 问题:在动态创建input是,如果先设置了值,再setAttribute type为radio的时候,input.value的值会丢失
- 浏览器:IE全系列
- 治疗方式:设置时,先将值保存起来
// $('input').attr('type','radio);
// attrHooks.type 的处理
var input = document.createElement('input');
input.value = 'ttt';
input.setAttribute('type', 'radio');
//alert(input.value); // 在IE下,弹出on 在chrome下,弹出ttt //但是注意,这样不会出问题
var username = document.getElementById('username');
username.value = 'lonelyclick other';
username.setAttribute('type', 'radio');
//alert(username.value); //全部浏览器全部弹出lonelyclick other //针对不兼容浏览器
function setInputRadioAttribute(input) {
var back = input.value;
input.setAltertitle('type', 'radio');
if (back) {
input.value = back;
}
}
兼容点2:
- 问题:在为button.setAttribute('value','abc')会错误的将button.innerHTML设置为abc,get亦然
- 浏览器:IE6~7
- 治疗方式:用AttributeNode进行兼容
var btn = document.getElementById('btn');
//alert(btn.getAttribute('value')); //IE6~7 弹出def,其他弹出abc var btn2 = document.getElementById('btn2');
btn2.setAttribute('value', 'seo');
//alert(btn2.innerHTML);// IE6~7 弹出seo,其他弹出btn2222 //针对不兼容浏览器
function setButtonValueAttribute(button, value) {
var an = document.createAttribute('value');
an.value = value;
button.setAttributeNode(an);
} function getButtonValueAttribute(button) {
var an = button.getAttributeNode('value');
return an && an.specified ? an.value : undefined;
} var btn3 = document.getElementById('btn3'); setButtonValueAttribute(btn3, 'somethingabc');
//alert(btn3.innerHTML); // btn3
//alert(btn3.getAttribute('value')); //somethingabc
//alert(getButtonValueAttribute(btn3)); //somethingabc
兼容点3:
- 问题:element.setAttribute/getAttribute style 会出问题
- 浏览器:IE6~8
- 治疗方式:读取和设置element.style.cssText来代替setAttribute和getAttribute
var box = document.getElementById('box');
console.log(box.style); // 全部浏览器返回CSSStyleDeclaration
console.log(box.getAttribute('style')); // IE6~7 返回CSSStyleDeclaration,IE8返回COLOR:blue; 其他color:blue;
box.setAttribute('style', 'background:red;') //IE6~7不起作用,其他起作用 //针对不兼容浏览器
function setStyleAttribute(element, styleText) {
element.style.cssText = styleText + '';
} function getStyleAttribute(element) {
return element.style.cssText;
}
兼容点4:
- 问题:在W3C下,获得href和src是绝对的属性值,但是IE自作聪明,将其补全为绝对路径
- 浏览器:IE6~7
- 治疗方式:用IE特有的另一个参数!!!,2是指href的value值,4是补全
var baidu = document.getElementById('baidu');
console.log(baidu.href); // all is http://localhost:63342/get.do
console.log(baidu.getAttribute('href')); // IE6~7返回http://localhost:63342/get.do 其他返回/get.do var backbone = document.getElementById('backbone');
console.log(backbone.getAttribute('src'));
console.log(backbone.src);
//IE6~7 http://localhost:63342/HTML5Exp/bootstrap/images/backbone.png
//其他返回 ../../bootstrap/images/backbone.png //针对不兼容浏览器
//http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
console.log(baidu.getAttribute('href', 2));
console.log(backbone.getAttribute('src', 2)); console.log(baidu.getAttribute('href', 4));
console.log(backbone.getAttribute('src', 4));
兼容点5:
- 问题:在动态创建select时,加入一个option,然后取select.selected IE返回false,其他返回true
- 浏览器:IE全版本
- 治疗方式:访问一下select的selectedIndex属性,修复选择下标,如果有optgroup的话,也要访问optgroup的哦
//不会有问题
var selecteddd = document.getElementById('selecteddd');
console.log(selecteddd.options[0].selected); var select = document.createElement('select');
var option = document.createElement('option');
option.innerHTML = 'option111';
option.value = 1;
select.appendChild(option);
document.body.appendChild(select); console.log(option.selected); //IE6~7 false 其他true //针对不兼容浏览器
select.selectedIndex;
console.log(option.selected); // true
兼容点6:
- 问题:默认的radio或者checkbox的input,默认value为空字符串
- 浏览器:safair
- 治疗方式:如果有这个bug,就判断是否为'',如果为'',返回on就好了
var checkonElement = document.getElementById('checkonElement');
//alert(checkonElement.value); //safair为空字符串 其他为on //针对不兼容浏览器
function getSafairRadioCheckboxValue(input) {
var v = input.value;
return v === '' ? 'on' : v;
}
兼容点7:
- 问题:动态创建的input,如果设置checked或者selected为true,就不起作用的
- 浏览器:IE6~7
- 治疗方式:用defaultChecked和defaultSelected替换之
var defaultCheckedInput = document.createElement('input');
defaultCheckedInput.type = 'checkbox';
defaultCheckedInput.checked = true; //无效,在浏览器上可以看到,没有被选中
document.body.appendChild(defaultCheckedInput); //针对不兼容浏览器
var defaultCheckedInput = document.createElement('input');
defaultCheckedInput.type = 'checkbox';
defaultCheckedInput.defaultChecked = true; //被选中
document.body.appendChild(defaultCheckedInput);
这一部分是为jQuery的源码分析做参考,请看:jQuery.attributes源码分析(attr/prop/val/class)
参考
- http://www.cnblogs.com/rubylouvre/p/3524113.html
- http://www.cnblogs.com/snandy/archive/2012/05/06/2473936.html
- http://www.cnblogs.com/rubylouvre/p/3524113.html
- http://www.cnblogs.com/rubylouvre/archive/2009/12/07/1618182.html
- http://www.w3help.org/zh-cn/causes/SD2021
- http://www.jb51.net/article/30389.htm
- http://www.jb51.net/article/39485.htm
- http://www.cnblogs.com/top5/archive/2011/07/13/2105260.html
attribute和property兼容性分析的更多相关文章
- Javascript中的attribute和property分析
attribute和property这两个单词,都有属性的意思,attribute有属性.特质的意思,property则有性质,性能的意思. 首先需要明确的是,在规范中,读取和设置attribute的 ...
- jQuery的attr与prop,attribute和property区别
jQuery1.6中新添加了一个prop方法,看起来和用起来都和attr方法一样,这两个方法有什么区别呢?这要从HTMl 的attribute与property区别说起,attr与prop正是这两个东 ...
- javascript之attribute 和 property
首先看看这两个单词的英文释义(来自有道词典).先是property: property ['prɔpəti] n. 性质,性能:财产:所有权 英英释义: any area set aside for ...
- javascript DOM 操作 attribute 和 property 的区别
javascript DOM 操作 attribute 和 property 的区别 在做 URLRedirector 扩展时,注意到在使用 jquery 操作 checkbox 是否勾选时,用 at ...
- JavaScript的attribute和property辨析
1.Attribute Attribute是HTML上设置的属性,在html中显式地设置,或者通过setAttribute()方法设置. <input type='text' id='txt' ...
- 必备技能:分清楚DOM的attribute和property
分清楚DOM的attribute和property,用JQ的时候分清楚attr,和prop方法,网上有很多大神的总结,我就不列举了.
- Attribute和Property
有时很容易对Attribute和Property混淆,因为中文翻译都是“属性”来解释的.其实这两个表达的不是一个层面的东西. Property属于面向对象理论范畴,在使用面向对象思想编程的时候,常常需 ...
- boolean attribute(布尔值属性) attribute vs property
boolean attribute(布尔值属性) boolean attribute HTML - Why boolean attributes do not have boolean val ...
- 详解JS中DOM 元素的 attribute 和 property 属性
一.'表亲戚':attribute和property 为什么称attribute和property为'表亲戚'呢?因为他们既有共同处,也有不同点. attribute 是 dom 元素在文档中作为 h ...
随机推荐
- HDU 1328 IBM Minus One
IBM Minus One Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Tot ...
- 一个Socket连接管理池(心跳机制)
一个Socket连接管理池(心跳机制) http://cuisuqiang.iteye.com/blog/1489661
- UVa 202 - Repeating Decimals
给你两个数,问你他们相除是多少,有无限循环就把循环体括号括起来 模拟除法运算 把每一次的被除数记下,当有被除数相同时第一个循环就在他们之间. 要注意50个数之后要省略号...每一次输出之后多打一个回车 ...
- 使用CRT定位内存泄漏
1. 使能内存泄漏检测#define _CRTDBG_MAP_ALLOC#include <stdlib.h>#include <crtdbg.h>注1:语句顺序不能修改:注2 ...
- mysql学习(五)-字段属性
字段属性: unsigned: 无符号类型,只能修饰数值类型: create table if not exists t1(id int unsigned); zerofill:前端填0 //只能修饰 ...
- php-mysql 问题笔记一——在命令行中可以执行的sql语句,无法从php页面页面执行!
我的情况: 1.由于外键较多,插入数据时,提前关闭外键(SET FOREIGN_KEY_CHECKS=0). 2.所使用的sql语句中,有外键绑定到其他表中,所以无法从php页面插入. 原因分析: S ...
- 利用C#轻松创建不规则窗体
1.准备一个不规则的位图 可以使用任意一种你喜欢的作图工具,制作一个有形状的位图,背景使用一种其他的颜色.这个颜色在编程中用得着,所以最好使用一种容易记忆的颜色.如黄色,文件名为bk.bmp 2.创建 ...
- 联想企业网盘:SaaS服务集群化持续交付实践
1 前言 当代信息技术飞速发展,软件和系统的代码规模都变得越来越大,而且组件众多,依赖繁复,每次新版本的发布都仿佛是乘坐一次无座的绿皮车长途夜行,疲惫不堪.软件交付是一个复杂的工程,涉及到软 ...
- Delphi 实现任务栏多窗口图标显示
uses Windows; type TfrmLogin = class(TForm) end; implementation {$R *.dfm} procedure TfrmLogin.FormC ...
- perl 对象 bless 引用
[root@dr-mysql01 ~]# cat aa.pl use LWP::UserAgent; use Data::Dumper; my $ua = LWP::UserAgent->new ...