Home  >  Article  >  Web Front-end  >  JavaScript实现广告的关闭与显示效果实例

JavaScript实现广告的关闭与显示效果实例

WBOY
WBOYOriginal
2016-06-01 09:54:331371browse

本文实例讲述了JavaScript实现广告的关闭与显示效果。分享给大家供大家参考。具体实现方法如下:

js代码部分如下:

<code class="language-html"><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></code>

 

html部分如下:

<code class="language-html"><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></code>

希望本文所述对大家的javascript程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn