[jQuery] DOM & CSS

1. html(), text(), val()

这里写图片描述


2. Attribute

这里写图片描述

   <div class="red" title="redone">red1</div>
   <div class="green">green1</div>
   <p class="red" title="redtwo">red2</p>


   <ul>
     <li title="1">1</li>
     <li title="2">2</li>
     <li title="3">3</li>
     <li title="4">4</li>
     <li title="5">5</li>
   </ul>
$(function(){
//set 'title' is jessica
    $(".red").attr('title', 'jessica');

// set 'title' by function  
    $("li").attr('title',function(index,value){
        return "I am No."+value+index*10;
    });
});

这里写图片描述
这里写图片描述


3. CSS

这里写图片描述


    $(".red").css({
        'color': 'white',
        'font-size': '2em',
        'background-color': 'orange'
    });

这里写图片描述


.addclass{
  font-size: 3em;
  border:5px dotted blue;
  width: 100px;
  height:100px;
}
$(".green").addClass('addclass')

这里写图片描述


3. Width/Height

这里写图片描述

.green{
  width:200px;
  height:200px;
  border:10px dotted orange;
  padding:8px;
  margin:16px;
  background-color: green;
}
$(function(){
    console.log($(".green").width());
    console.log($(".green").innerWidth());
    console.log($(".green").outerWidth());
    console.log($(".green").outerWidth(true));
});

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值