您的位置:首页 > Web前端 > JavaScript

javascript中如何判断一个元素在页面中是否存在(转)

2011-04-22 15:23 609 查看
http://waibaohuo.blog.163.com/blog/static/129005368201041863048773/

注意如下几种判断方法,根据实际情况选择使用:

1. 判断表单元素是否存在(一)

if ( "periodPerMonth" in document.theForm )

{

return true;

else

return false;

}

2. 判断页面元素是否存在

if (document.getElementById("XXX"))

{

//存在

}

3. 判断表单元素是否存在(二)

if (document.theForm.periodPerMonth)

{

//存在

}



if(typeof(document.theForm.periodPerMonth)=="object")

{

//存在

}

4. 判断表单是否存在

if (document.theForm)

{

//存在

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: