首頁  >  文章  >  web前端  >  javascript怎麼判斷id是否存在

javascript怎麼判斷id是否存在

藏色散人
藏色散人原創
2021-11-03 14:29:454939瀏覽

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是否存在的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn