ターゲット要素が属するオブジェクトを取得します。

738 ワード


appiの用途:ターゲット要素が属するdocumentオブジェクトを取得します。
 
1、ZYC.dom.gのコードの詳細はhttp://zhangyaochun.iteye.com/blog/1439262です。
 
2、owner Dcument ---要素のルート要素を返します。この属性は読み取り専用です。
 
3、nodeType=9 文書ノード
 
 
/*
*getDocument --get the document object that the target element belong to*
*@function*
*@param {HTMLElement|String} element*
*@return {HTMLElement}*
*/
ZYC.dom.getDocument = function(element){
    element = ZYC.dom.g(element);
	return element.nodeType == 9 ? element.ownerDocument : element.document
}