时间:2021-05-25
复制代码 代码如下:
function isWindow( obj )
{
if( typeof obj.closed == 'undefined' ) return false;
var result = /\[object (window|global)\]/i.test( Object.prototype.toString.call( obj ) );
if( result )return result;
try{
obj.closed = obj.closed;
return false;
}catch(e)
{
result = true;
}
return result;
}
function isDocument( obj )
{
if( typeof obj.body == 'undefined' ) return false;
var b = obj.body;
try{
obj.body = null;
obj.body = b;
return false;
}catch(e)
{
return true;
}
}
function isElement( o )
{
var tn = 'tagName',temp = o[tn],result;
if( typeof temp == 'undefined' )return false;
try{
o[tn] = null;
result = ( temp == o[tn] );
o[tn] = temp;
return result;
}catch(e)
{
return true;
}
}
function getOwnerWindow( node )
{
if( isWindow( node ) )return node;
var doc = isDocument( node ) ? node : node.ownerDocument;
return doc.view || doc.parentWindiw || doc.defaultView;
}
需要充分测试
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
复制代码代码如下:functionpublic_GetParentByTagName(element,tagName){varparent=element.pa
复制代码代码如下://JScript文件functiongetParentByTagName(element,tagName){varparent=elemen
如果是为了取到tagName后再进行判断,那直接用下面的代码会更方便:$(element).is('input')如果是要取到标签用作到别的地方,可以使用一下代
1.js如何判断是否在iframe中Js代码//方式一if(self.frameElement&&self.frameElement.tagName=="IFR
jQuery判断iframe中元素是否存在的方法,需要的朋友可以参考一下。if($(window.frames["iframepage"].document