码迷,mamicode.com
首页 > 其他好文 > 详细

循环显示切换

时间:2015-03-16 11:00:53      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

 1 //列表显示
 2             function openP(_id)
 3                 {
 4                    var select_id = parseInt(_id.replace("month",""));
 5                    for (i=1;i<=4;i++)
 6                    {
 7                       if (i==select_id)
 8                       {
 9                           document.getElementById("month"+i).style.display = "block";
10                       }
11                       else
12                       {
13                          document.getElementById("month"+i).style.display = "none";
14                       }
15                    }
16                 }

调用方法:

1 <a href="javaScript: ;" onmouseover="openP(‘month1‘)"></a>
2                     <a href="javaScript: ;" onmouseover="openP(‘month2‘)"></a>
3                     <a href="javaScript: ;" onmouseover="openP(‘month3‘)"></a>
4                     <a href="javaScript: ;" onmouseover="openP(‘month4‘)"></a>

 

循环显示切换

标签:

原文地址:http://www.cnblogs.com/q460021417/p/4341218.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!