网络编程
位置:首页>> 网络编程>> JavaScript>> getWindow与isWindow

getWindow与isWindow

 来源:Ruby's Louvre 发布时间:2009-12-28 13:12:00 

标签:getWindow,isWindow,JavaScript

 

var getWindow = function(obj) { 
var winProp = !+"\v1" ? 'parentWindow' : 'defaultView'; 
return obj[winProp] || (obj.ownerDocument && obj.ownerDocument[winProp]) || obj; 

 

var isWindow = function(obj){ 
return obj.document && obj.document.nodeType === 9 || 
obj.contentDocument && obj.contentDocument.nodeType === 9 
}

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com