메소드 | 설명 | |
---|---|---|
AttributeSelector ( string attrName, string value ) : string |
Formats an attribute selector with no modifier
|
|
AttributeSelector ( string attrName, string value, string mod ) : string |
Formats an attribute selector
|
|
ChildSelector ( string parent ) : string |
Selects all immediate children of a parent
|
|
ChildSelector ( string parent, string child ) : string |
Applies a selector on all children of a parent
|
|
ClassSelector ( string className ) : string |
Formats a class selector
|
|
ContainsSelector ( string text ) : string |
Formats a contains selector
|
|
Format ( string selector ) : string |
Formats the JQuery constructor with a selector
|
|
Format ( string selector, string member ) : string |
Formats the JQuery constructor with a selector and member
|
|
IdSelector ( string id ) : string |
Formats an id selector
|
|
IndexSelector ( string baseSelector, int index ) : string |
Formats an index selector
|
|
ParentSelector ( string child ) : string |
Formats a selector which is eqivalent to selecting the first parent of the child
|
public static AttributeSelector ( string attrName, string value ) : string | ||
attrName | string | name of the attribute |
value | string | value of the attribute |
리턴 | string |
public static AttributeSelector ( string attrName, string value, string mod ) : string | ||
attrName | string | name of the attribute |
value | string | value of the attribute |
mod | string | Modifier (|, *, ~, $, !, ^) |
리턴 | string |
public static ChildSelector ( string parent ) : string | ||
parent | string | |
리턴 | string |
public static ChildSelector ( string parent, string child ) : string | ||
parent | string | |
child | string | |
리턴 | string |
public static ClassSelector ( string className ) : string | ||
className | string | class to select |
리턴 | string |
public static ContainsSelector ( string text ) : string | ||
text | string | Text too search for |
리턴 | string |
public static Format ( string selector ) : string | ||
selector | string | selector to use |
리턴 | string |
public static Format ( string selector, string member ) : string | ||
selector | string | selector to use |
member | string | member to call |
리턴 | string |
public static IdSelector ( string id ) : string | ||
id | string | The id to select |
리턴 | string |
public static IndexSelector ( string baseSelector, int index ) : string | ||
baseSelector | string | base selector to index |
index | int | index |
리턴 | string |
public static ParentSelector ( string child ) : string | ||
child | string | Child to select the parent of |
리턴 | string |