編寫html與js交互網頁心得:編寫兩個按鈕切換顯示不一樣的圖片

第一步:先創建一個html網頁,以下: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>jquery

須要注意的是: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」ide

第二步:編寫index.js的代碼,代碼以下:htm

$(".btnhy1").click(function() {
 //alert("111")
 $("#image1").show();
 $("#image2").hide();
});
$(".btnhy2").click(function() {
 //alert("222")
 $("#image2").show();
 $("#image1").hide();
});
 
總結:class  使用的是.(dot),id使用的是#。
相關文章
相關標籤/搜索