JQuery 노트 (4) [96~283] JQ 대상에 방법과 속성 추가

1063 단어
【98】jquery 속성
원본 노트:
jquery: core_version,

참고:
jquery 속성이 49줄을 가리키는 코어version = "2.0.3", alert( $( ).jQuery );//2.0.3
【100】constructor 속성
원본 노트:
constructor: jQuery,

참고:
constructor 속성: 대상의 구조 함수를 봅니다.JS에서 함수를 생성하면 해당 원형에 constructor 속성이 자동으로 추가됩니다.예를 들어 x 함수: x.prototype.constructor = x; 객체에 속성을 추가하는 방법:
//   
function Aaa() {}

Aaa.prototype.name = '  ';
Aaa.prototype.age = 18;

alert( Aaa.prototype.constructor );// function Aaa() {}       ,   

//   
Aaa.prototype = {
    name : '  ',
    age : 18
};

      。      ,    constructor  。
 JQ     ,        ,  jQuery。


【195】selector 속성
원본 노트:
selector: "",

참고:
선택 문자열 저장
【198】length속성
원본 노트:
length: 0,

참고:
this 대상의 길이------노트 6페이지 원리(그림 그리기 따위 짜증나):this는 특수한 대상이므로 아래 첨자와 길이가 있을 수 있습니다.그래서 for 가능, for in.JQ는 this의 아래 첨자와 length를 이용하여 대상을 뛰어넘어 속성을 찾습니다.그래서 init ()가 되돌아오는 것은 모두 이런 형식이다.

좋은 웹페이지 즐겨찾기