js判断网页中某个id是否存在的代码

发布时间:2020-05-01编辑:脚本学堂
本文介绍一个可以判断网页中某id元素是否存在的js代码,有需要的朋友,可以参考下。

代码如下:
 

复制代码 代码示例:
<html>       
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>判断某元素id是否存在-www.jb200.com</title>
  <link rel="stylesheet" type="text/css" href=""  media="all" />
  <script type="text/javascript">
   function exist(id){
    var s=document.getElementById(id);
    if(s){return true}
    else{return false}
   }
   window.onload=function(){
    alert(exist("wrapper"));
    alert(exist("111"))
   }
  </script>
 </head>
 <body>
  <div id="wrapper"></div>
 </body>
</html>