现在的位置: 首页 > 综合 > 正文

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

2013年04月07日 ⁄ 综合 ⁄ 共 406字 ⁄ 字号 评论关闭

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)  
{  
//存在  
}  

【上篇】
【下篇】

抱歉!评论已关闭.