js对属性的操作

 

 

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style type="text/css">
            .a{
                color: red;
                font-size: 30px;
            }
            p.active{
                color: blue;
            }
        </style>
    </head>
    <body>
        <p title="小马过河" id="p1" class="a">18岁</p>
        <script type="text/javascript">

            // 如果是自定义的属性,要在文档上能看到,通过setAttribute设置属性
            var p1 = document.getElementById('p1');
            console.log(p1.getAttribute('title'));
            console.log(p1.getAttribute('class'));
            // p1.setAttribute('class','abc');
            // p1.setAttribute('adadad','1321313');

            // console.log(p1.className);
            // console.log(p1.title);
            // p1.abc = 123;
            // console.dir(p1);
            // p1.onclick = function(){
            //     this.className = this.className +' active';
            // }

        </script>
    </body>
</html>

 

1.1

            var p1 = document.getElementById('p1');
            console.log(p1.getAttribute('title'));
            console.log(p1.getAttribute('class'));

 

获取属性值  选取的对象.get属性() :      p1.getAttribute('title') 

 

1.2、

// 如果是自定义的属性,要在文档上能看到,通过setAttribute设置属性
var p1 = document.getElementById('p1');

p1.setAttribute('class','abc');
p1.setAttribute('adadad','1321313');
console.log(p1.getAttribute('class'));
console.log(p1.getAttribute('adadad'));

对象. set属性(‘键’,‘值’)  可以修改已有属性,可以设置未设置属性,可以自定义属性         p1.setAttribute('class','abc');

1.3、

            var p1 = document.getElementById('p1');
        console.log(p1.getAttribute('class'));
            p1.class='mcw'
            p1.aaa='bbb'
            console.log(p1.getAttribute('class'));
            console.log(p1.getAttribute('aaa'));
            console.log(p1.class);
            console.log(p1.aaa);

 对象.属性设置的属性不能用get属性获得,用对象.属性获得

并且元素行里不显示设置的属性

 

1.4、增加属性值。(比如添加多个类名)

            p1.onclick = function(){
                this.className = this.className +' active'; 
            }

 点击一下就添加了类属性值,也可以用+=实现

 

转载于:https://www.cnblogs.com/machangwei-8/p/10976494.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值