本文實例講述了JavaScript實現廣告的關閉與顯示效果。分享給大家供大家參考。具體實現方法如下:
js代碼部分如下:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <script language="javascript"> <!-- function display(){ if(googlead.style.visibility == 'visible'){ googlead.style.visibility ='hidden' ; document.getElementById('words').innerHTML='關閉'; return true; } else{ googlead.style.visibility='visible'; document.getElementById('words').innerHTML='顯示'; return false; } } //--> </script>html部分如下:
?
1 2 <div id="googlead" style="margin-bottom:5px;width:728px;height:90px;float:left;visibility:visible">換客網廣告...</div> <div id="myid" ><span id="words" onclick="return display()">關閉</span></div>希望本文所述對大家的javascript程序設計有所幫助。