编写html与js交互网页心得:编写两个按钮切换显示不同的图片

Posted 炫丽彩虹的男人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写html与js交互网页心得:编写两个按钮切换显示不同的图片相关的知识,希望对你有一定的参考价值。

第一步:先建立一个html网页,如下:

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8" />
  <title></title>
 </head>
 <body>
  <div>
   <div>
        <input class="btnhy1" type="button" value="一楼" style="width: 80px;height: 30px; border: 2px; background: #2290E0;"/>
       <input class="btnhy2" type="button" value="二楼" style="width: 80px;height: 30px; border: 2px; background: #2290E0;"/>
     </div>
    <div>
        <img id="image1" src="img/111.jpg"/>
      <img id="image2" src="img/222.jpg"/>
    </div>
  </div>
  
  <script src="./js/jquery-1.8.3.min.js"></script>
  <script src="./js/index.js"></script>
 </body>
</html>

需要注意的是:index.js使用“$”时,必须要引用“ <script src="./js/jquery-1.8.3.min.js"></script>”,要不然就会报 “Uncaught ReferenceError: $ is not defined”错误,如果引用的路径不对就会报:“Failed to load resource: net::ERR_FILE_NOT_FOUND”

第二步:编写index.js的代码,代码如下:

$(".btnhy1").click(function() {
 //alert("111")
 $("#image1").show();
 $("#image2").hide();
});
$(".btnhy2").click(function() {
 //alert("222")
 $("#image2").show();
 $("#image1").hide();
});
 
总结:class  使用的是.(dot),id使用的是#。

 

以上是关于编写html与js交互网页心得:编写两个按钮切换显示不同的图片的主要内容,如果未能解决你的问题,请参考以下文章

用JS编写cookie传值问题

javascript总结

js动画效果代码方法

如何使用 PHP 实现网页交互

servlet与jsp篇$.ajax交互

使用 python 与本地 HTML 文件交互