js setattribute

生活百科 2022-10-24 08:27www.ai-classes.cn生活常识

js中的setattribute是什么?有什么作用?一起来看看小编今天的分享吧。

setattribute的作用就是增加一个指定名称和值的新属性,或者把一个现有的属性设定为指定的值。在JavaScript中,如果要给Elent动态添加各种属性,就需要通过使用setAttribute()来实现。

下面是具体示例

1、样式问题
setAttribute("class", value)中class是指改变"class"这个属性,所以要带引号。

var input = docunt.createElent("input");
input.setAttribute("type", "text");
input.setAttribute("na", "q");
input.setAttribute("class",bordercss);

输出时,即,input控件具有bordercss样式属性
注意class属性在W3C DOM中扮演着很重要的角色,但由于浏览器差异性仍然存在。
使用setAttribute("class", vNa)语句动态设置Elent的class属性在firefox中是行的通的,但在IE中却不行。因为使用IE内核的浏览器不认识"class",要改用"classNa";
同样,firefox 也不认识"classNa"。所以常用的方法是二者兼备

elent.setAttribute("class", value); //for firefox
elent.setAttribute("classNa", value); //for IE

2、方法属性等问题

var bar = docunt.getElentById("testbt");
bar.setAttribute("onclick", "javascript:alert('This is a test!');");

这里利用setAttribute指定e的onclick属性,IE不支持,IE并不是不支持setAttribute这个函数,而是不支持用setAttribute设置某些属性,例如对象属性、集合属性、事件属性,也就是说用setAttribute设置style和onclick这些属性在IE中是行不通的。
为达到兼容各种浏览器的效果,可以用点符号法来设置Elent的对象属性、集合属性和事件属性。

docunt.getElentById("testbt").classNa = "bordercss";
docunt.getElentById("testbt").style.cssText = "color: #00f;";
docunt.getElentById("testbt").style.color = "#00f";
docunt.getElentById("testbt").onclick= function () { alert("This is a test!"); }

以上就是小编今天的分享了希望可以帮助到大家。

上一篇:vue.set()用法 下一篇:javascript function

Copyright © 2014-2025 Www.ai-classes.cn 爱句子网