Библиотека jQuery превращает объекты DOM в узлы jQuery (nodes). Эти узлы имеют следующие методы (далее информация на английском языке, почерпнутая из различных туториалов).
- addClass(), removeClass(), toggleClass() - Applies or removes a CSS class to a jQuery node.
- css("attribute", "value") - Applies a single CSS rule to the jQuery node.
- Css(JSONObject) - Applies JSON object list of CSS rules and values to the jQuery node.
- html() - Reads or changes the HTML contents of the jQuery node.
- text() - Reads or changes the text contents of a jQuery node.
- val() - Reads the value of a form element.
- bind(event, function) - Triggers function to occur when event occurs.
- Show(), hide(), toggle() - Makes element appear or disappear.
- animate(parameters, duration) - parameters is a JSON object consisting of CSS rules and values. Values are smoothly changed from current value to target value over duration (measured in milliseconds).
Комментариев нет:
Отправить комментарий