javascript判斷id是否存在的方法:1、建立一個HTML範例檔案;2、新增script標籤;3、透過「function exist(id){...}」方法判斷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中文網其他相關文章!