示例#1
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Search for a given element from among the matched elements.
 ///</summary>
 ///<param name="element">The DOM element or first element within the jQuery object to look for.</param>
 public extern Number index(jQuery element);
示例#2
0
文件: jQuery.cs 项目: JimmyJune/blade
 public extern static jQuery Select(jQuery @object);
示例#3
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert content, specified by the parameter, to the end of each element in the set of matched elements.
 ///</summary>
 ///<param name="content">DOM element, HTML string, or jQuery object to insert at the end of each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements.</param>
 public extern jQuery append(jQuery content, Element content1);
示例#4
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.
 ///</summary>
 ///<param name="object">An existing jQuery object to match the current set of elements against.</param>
 public extern bool @is(jQuery @object);
示例#5
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
 ///</summary>
 ///<param name="content">DOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements.</param>
 public extern jQuery prepend(Element content, jQuery content1);
示例#6
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert every element in the set of matched elements to the end of the target.
 ///</summary>
 ///<param name="target">A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted at the end of the element(s) specified by this parameter.</param>
 public extern jQuery appendTo(jQuery target);
示例#7
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Wrap an HTML structure around each element in the set of matched elements.
 ///</summary>
 ///<param name="wrappingElement">An HTML snippet, selector expression, jQuery object, or DOM element specifying the structure to wrap around the matched elements.</param>
 public extern jQuery wrap(jQuery wrappingElement);
示例#8
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert every element in the set of matched elements to the beginning of the target.
 ///</summary>
 ///<param name="target">A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted at the beginning of the element(s) specified by this parameter.</param>
 public extern jQuery prependTo(jQuery target);
示例#9
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Remove elements from the set of matched elements.
 ///</summary>
 ///<param name="object">An existing jQuery object to match the current set of elements against.</param>
 public extern jQuery not(jQuery @object);
示例#10
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Replace each element in the set of matched elements with the provided new content.
 ///</summary>
 ///<param name="newContent">The content to insert. May be an HTML string, DOM element, or jQuery object.</param>
 public extern jQuery replaceWith(jQuery newContent);
示例#11
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Add elements to the set of matched elements.
 ///</summary>
 ///<param name="object">An existing jQuery object to add to the set of matched elements.</param>
 public extern jQuery add(jQuery @object);
示例#12
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Get the first element that matches the selector, beginning at the current element and progressing up through the DOM tree.
 ///</summary>
 ///<param name="object">A jQuery object to match elements against.</param>
 public extern jQuery closest(jQuery @object);
示例#13
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
 ///</summary>
 ///<param name="object">A jQuery object to match elements against.</param>
 public extern jQuery find(jQuery @object);
示例#14
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert content, specified by the parameter, after each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert after each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements.</param>
 public extern jQuery after(jQuery content, Element content1);
示例#15
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert every element in the set of matched elements before the target.
 ///</summary>
 ///<param name="target">A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted before the element(s) specified by this parameter.</param>
 public extern jQuery insertBefore(jQuery target);
示例#16
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert content, specified by the parameter, after each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert after each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements.</param>
 public extern jQuery after(jQuery content, jQuery content1);
示例#17
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert content, specified by the parameter, before each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert before each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements.</param>
 public extern jQuery before(jQuery content, string content1);
示例#18
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
 ///</summary>
 ///<param name="content">DOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements.</param>
 public extern jQuery prepend(string content, jQuery content1);
示例#19
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert content, specified by the parameter, before each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert before each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements.</param>
 public extern jQuery before(jQuery content, Element content1);
示例#20
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
 ///</summary>
 ///<param name="content">DOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements.</param>
 public extern jQuery prepend(jQuery content, jQuery content1);
示例#21
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert content, specified by the parameter, before each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert before each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements.</param>
 public extern jQuery before(jQuery content, jQuery content1);
示例#22
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert content, specified by the parameter, to the end of each element in the set of matched elements.
 ///</summary>
 ///<param name="content">DOM element, HTML string, or jQuery object to insert at the end of each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements.</param>
 public extern jQuery append(jQuery content, string content1);
示例#23
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert every element in the set of matched elements after the target.
 ///</summary>
 ///<param name="target">A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted after the element(s) specified by this parameter.</param>
 public extern jQuery insertAfter(jQuery target);
示例#24
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert content, specified by the parameter, to the end of each element in the set of matched elements.
 ///</summary>
 ///<param name="content">DOM element, HTML string, or jQuery object to insert at the end of each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements.</param>
 public extern jQuery append(jQuery content, jQuery content1);
示例#25
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert content, specified by the parameter, after each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert after each element in the set of matched elements.</param>
 public extern jQuery after(jQuery content);
示例#26
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Reduce the set of matched elements to those that match the selector or pass the function's test. 
 ///</summary>
 ///<param name="object">An existing jQuery object to match the current set of elements against.</param>
 public extern jQuery filter(jQuery @object);
示例#27
0
文件: jQuery.cs 项目: JimmyJune/blade
 ///<summary>
 /// Insert content, specified by the parameter, after each element in the set of matched elements.
 ///</summary>
 ///<param name="content">HTML string, DOM element, or jQuery object to insert after each element in the set of matched elements.</param>
 ///<param name="content1">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements.</param>
 public extern jQuery after(jQuery content, string content1);
示例#28
0
 /// <summary>
 /// Creates a new instance of the class.
 /// </summary>
 public DivBuilder()
 {
     _jqBody = jQuery.Select(window.document.body);
 }
示例#29
0
文件: jQuery.cs 项目: JimmyJune/blade
 public extern static jQuery Select(string selector, jQuery context);