AutoCAD 3DMAX C语言 Pro/E UG JAVA编程 PHP编程 Maya动画 Matlab应用 Android
Photoshop Word Excel flash VB编程 VC编程 Coreldraw SolidWorks A Designer Unity3D
 首页 > JavaScript

JavaScript实现同一个页面打开多张图片

51自学网 http://www.wanshiok.com
js同一页面打开多张图片,js打开多张图片,js页面打开多张图片

我们的目标是:


代码:

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>js美术馆</title> <script type="text/javascript" >  function showPic(whichpic)  {   var source=whichpic.getAttribute("href");   var placeholder= document.getElementById("placeholder");   placeholder.setAttribute("src",source);  } </script> <style>  .wrap{   width:1000px;   margin:0 auto;   }   .place{   margin:0 auto;   text-align:center;   }   .table{   width:1000px;   height:27px;   margin-bottom:10px;   }   .table li{   float:left;   line-height:27px;   list-style-type: none;   width: 100px;   font-family: "微软雅黑";   text-align: center;   } </style> <body> <div class="wrap"> <h1>Snapshots</h1> <div class="table"> <ul>  <li>   <a href="images/网站1.jpg" onclick="showPic(this);return false;" title="A display">第一个</a>  </li>  <li>   <a href="images/网站2.jpg" onclick="showPic(this);return false;" title="B display">第二个</a>  </li>  <li>   <a href="images/网站3.jpg" onclick="showPic(this);return false;" title="C display">第三个</a>  </li>  <li>   <a href="images/网易.PNG" onclick="showPic(this);return false;" title="D display">第四个</a>  </li>  <li>   <a href="images/MOOC中国.PNG" onclick="showPic(this);return false;" title="E display">第五个</a>  </li> </ul> </div> //添加一个占位符 <div class="place"> <img id="placeholder" src="images/ad.jpg" alt="my image" /> </div> <!--place end--> </div> <!--wrap end--> </body> </html> 

效果如下:


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持wanshiok.com。


js同一页面打开多张图片,js打开多张图片,js页面打开多张图片  
上一篇:JavaScript获取短信验证码(周期性)  下一篇:Javascript 对cookie操作详解及实例