jQuery css詳解

來源:互聯網
上載者:User

標籤:style   class   blog   code   color   width   

今天確確實實是放了一天假,喝了點小酒,看了天天向上和快樂大本營以及中國好舞蹈,越來越熱愛舞蹈了,還是總結一篇吧。

@jquery css

css(name|pro|[,val|fn):訪問或設定匹配元素的樣式屬性

1 $("div").click(function(){2     $(this).css({width:20px,height:30px})3 });

offset([coordinates]):擷取匹配元素在當前視口(body)的相對位移

1 <p>hello baby</p>2 3 $("p").html("left:"+offset.left+",top:"+offset.top);4 5 // offset().left就相當於與body的Margin-left6 //offset().top就相當於與body的Margin-top

position():擷取或設定匹配元素相對父元素的位移

1 $("p").html("left:"+$("p").position().left);2 3 //position().left相當於與當前父元素的Margin-left;4 //position().top相當於與當前父元素的Margin-top;

scrollTop([val]):擷取匹配元素相對於捲軸頂部的位移;

scrollLeft([val]):擷取匹配元素相對於捲軸左部的位移;

height(val|fn):取得或設定匹配元素當前計算的高度值(高度)

1 $("p").height(20);

width(val|fn):取得或設定匹配元素當前計算的寬度值(寬度);

innerHeight():擷取第一個匹配元素內部地區高度(高度+補白)

innerWidth():擷取第一個匹配元素內部地區寬度;

outerHeight([options]):擷取第一個匹配元素外部高度;

1 <p>HELLObaby</p>2 3 $("p").html("outerHeight:"+$("p").outerHeight()+",outerHeight(true):"+$("p").outerHeight(true));4 5 //outerHeight() 表示高度+補白+邊框,當參數為true時,表示高度+補白+邊框+邊距;

outerWidth([options]):擷取第一個匹配元素的外部寬度;

總結還不夠精鍊,還需要逐步完善!!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.