DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> JavaScript實現廣告的關閉與顯示效果實例
JavaScript實現廣告的關閉與顯示效果實例
編輯:JavaScript綜合知識     

   本文實例講述了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程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved