方法:1、js方法,「if(document.getElementById('元素物件'))」;2、jquery方法,「if($('元素物件').length>0)」和“if($('元素物件')[0])”。
本教學操作環境:windows7系統、javascript1.8.5版、Dell G3電腦。
前兩天工作時遇到一問題,就是模組A顯示時,B是一種樣式,模組A刪除,B是另一種樣式。記錄下判斷節點存在的方法。
先寫下html
<!doctype html> <html> <head> <meta http-equiv="Content-Type" content="text/html charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge chrome=1" /> <meta name="keyword" content="随机加判断存在" /> <meta name="description" content="" /> <title>判断节点存在</title> <style type="text/css"> *{margin: 0;padding: 0;} #box1{width: 100px;height: 100px;background: #c66;margin: 20px auto;text-align: center;color: #fff;line-height: 100px;} .box2{width: 200px;height: 200px;background: #c60;margin: 0 auto;text-align: center;color: #fff;line-height: 200px;} .box22{width: 400px;height: 400px;line-height: 400px;} </style> </head> <body> <div class="box2">模块二</div> <div id="box1">模块一</div> </body> </html>
判斷id為box1的p是否存在的方法
js方法
if(document.getElementById('box1' ))
jquery方法
1.if($('#box1').length>0)
2.if($('#box1')[ 0])
放到程式碼裡
<script type="text/javascript"> var number = (1+Math.random()*(8-1)).toFixed(0); var oBox2=document.getElementsByTagName('div')[0]; var oBox1=document.getElementById('box1'); if(number<3){ document.body.removeChild(oBox1); } if(document.getElementById('box1')){ oBox2.className=oBox2.className+' box22'; console.log(111); } else{ oBox2.className='box2'; } </script>
jquery方法
<script src="jquery-1.8.3.min.js"></script> <script type="text/javascript"> var number = (1+Math.random()*(8-1)).toFixed(0); if(number>3){ } else{ $('#box1').remove(); } if($('#box1').length>0){//判断 $('.box2').addClass('box22'); } else{ $('.box2').removeClass('box22'); } </script>
<script src="jquery-1.8.3.min.js"></script> <script type="text/javascript"> var number = (1+Math.random()*(8-1)).toFixed(0); if(number>3){ } else{ $('#box1').remove(); } if($('#box1')[0]){//判断 $('.box2').addClass('box22'); } else{ $('.box2').removeClass('box22'); } </script>
每天進步一點點,努力超越昨天的自己。
【推薦學習:javascript進階教學】
#以上是JavaScript如何判斷節點是否存在的詳細內容。更多資訊請關注PHP中文網其他相關文章!