欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

javascript怎么判断id是否存在

程序员文章站 2022-03-18 22:42:42
...

javascript判断id是否存在的方法:1、创建一个HTML示例文件;2、添加script标签;3、通过“function exist(id){...}”方法判断id是否存在即可。

javascript怎么判断id是否存在

本文操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。

javascript怎么判断id是否存在?

js 判断id 是否存在的方法

代码如下:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript">
// window.onload=function(){
// alert(exist("getSpanText"));
// alert(exist("111"))
// }
function loadText(){
alert(exist("getSpanText"));
}
function exist(id){
var s=document.getElementById(id);
if(s){
return true
}
else{
return false
}
}
</script>
</head>
<body onload="loadText()">
<span id="getSpanText">Jason</span》
</body>
</html>

【推荐学习:javascript基础教程

以上就是javascript怎么判断id是否存在的详细内容,更多请关注其它相关文章!

相关标签: javascript