Jquery使用手冊3–css操作 作者:choy

來源:互聯網
上載者:User
  jQuery使用手冊

                                                  :CSS操作

      傳統javascript對css的操作相當繁瑣,比如<div id="a" style="background:blue">css</div>取它的background文法是 document.getElementById("a").style.background,而jQuery對css更方便的操作,$("#a").background(),$("#a").background(“red”)
$("#a")得到jQuery對象[ <div id="a" … /div> ]
$("#a").background()將取出該對象的background樣式。
$("#a").background(“red”)將該對象的background樣式設為redjQuery提供了以下方法,來操作css
background ()   background (val)     color()    color(val)     css(name)    css(prop)   
css(key, value)      float()   float(val)   height()   height(val)  width()  width(val) 
left()   left(val)       overflow()   overflow(val)   position()   position(val)  top()   top(val)


這裡需要講解一下css(name)  css(prop)  css(key, value),其他的看名字都知道什麼作用了!

<div id="a" style="background:blue; color:red">css</div><P id="b">test</P>

css(name)  擷取樣式名為name的樣式
$("#a").css("color") 將得到樣式中color值red,("#a").css("background ")將得到blue

css(prop)  prop是一個hash對象,用於設定大量的css樣式
$("#b").css({ color: "red", background: "blue" });
最終效果是<p id="b" style="background:blue; color:red">test</p>,{ color: "red", background: "blue" },hash對象,color為key,"red"為value,

css(key, value)  用於設定一個單獨得css樣式
$("#b").css("color","red");最終效果是<p id="b"

相關文章

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.