inline()

Type : public method

Support : 0.6

Return : String

  • 대상 개체의 인라인스타일을 설정하거나 반환.
    대상개체의 기존 cssText + value 로 설정된다.

Methods

  • inline( el, value ) : voidver 0.6~

    대상 개체의 인라인스타일 설정.
    • el : Element
      대상 개체
    • value : String
      "width:100px; z-index:2" 표기법
  • inline( el ) : Stringver 0.6~

    대상 개체의 cssText반환.
    • el : Element
      대상 개체

Example

//getter
var cssText = $B.style.inline( el );//대상개체의 style.cssText를 문자열로 반환.
var css = $B( el ).css( 'opacity' );//대상개체의 computed style반환.

//setter (아래 두가지 Method는 동일하게 동작한다.)
$B.style.inline( el, 'opacity: 0.5' );
$B( el ).css( 'opacity: 0.5' );