Maison >interface Web >js tutoriel >利用js实现选项卡的特别效果的实例_javascript技巧

利用js实现选项卡的特别效果的实例_javascript技巧

WBOY
WBOYoriginal
2016-05-16 17:41:101009parcourir

复制代码 代码如下:



   
   


   

   
   

   

今天习总书记去乌干达访问了


   
   
   
   

   


    <script><BR> function show(n){<BR> for(var i=1;i<=4;i++){<BR> //先把所有的选项卡背景颜色设为橙色,内容都隐藏<BR> document.getElementById("tab"+i).style.backgroundColor = 'orange';<BR> document.getElementById("p"+i).style.display = 'none';<BR> }<BR> document.getElementById("tab"+n).style.backgroundColor = 'green';<BR> document.getElementById("p"+n).style.display = "block";<BR> } <P> </script>

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn