parse()

Type : public method

Support : 0.6

Return : Object

  • 문자열로 된 Style Properties를 파싱해서 반환.
    {propName: {name, value, unit}} 형식으로 파싱

Methods

  • parse( str ) : Objectver 0.6~

    • str : String
      대상 문자열

Example

var propObj = $B.style.parse( 'background-color: rgb(255, 255, 25)' );
//{ backgroundColor: {name: 'background-color', value: 'rgb(255, 255, 25)', unit: ''} }

var propObj = $B.style.parse( 'z-index: 3; left: 100px' );
//{ zIndex:{name:'z-index', value:3, unit:''}, left:{name:'left', value:100, unit:'px'} }