Board logo

标题: javascript判断网页中某元素是否存在 [打印本页]

作者: fangzhen    时间: 2009-11-28 20:05     标题: javascript判断网页中某元素是否存在

检查一个元素存不存在用id来判断:
if(typeof(document.getElementById('userid')) == 'object'){
  if(document.getElementById('userid').value == '')  {
   alert('请先登录 ');
   if(parent.document.getElementById('username') != null) {
    parent.document.getElementById('username').focus();
   }
   return false;
  }
}      
不要用name,name是允许重复的!




欢迎光临 PHP开发笔记 (http://phpvi.com/) Powered by Discuz! 6.1.0