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)
{
//存在
}
最后
以上就是机智羊最近收集整理的关于javascript中如何判断一个元素在页面中是否存在(转)的全部内容,更多相关javascript中如何判断一个元素在页面中是否存在(转)内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复