如何在具有相同类的多个按钮的单击事件上使用Javascript添加多个相同的ID

时间:2019-05-02 09:32:22

标签: javascript jquery onclick silverstripe-4

我是JQuery的新手。我正在使用Silverstripe PHP。我设法通过具有相同类的多个div来获得on click事件,但是如果我想第二个按钮中具有相同类和相同ID的图像具有不同的图像。这个问题有什么解决方案?

我知道它必须具有不同的ID才能起作用,但是每个按钮都具有循环功能,因此它必须具有相同的ID。

file.ss:

<div class="PosterButton">
   <button class="posterBtn button" id="myBtn" value="$ClassPosterID">
       <i class="fas fa-image"></i> View poster
   </button>
</div>
<div class="myModal modal" id="myModal">
   <div class="modal-content">
       <span class="close">&times;</span>
       <img src="image-1.jpg" class="modal-content" />
   </div>
</div>

<div class="PosterButton">
   <button class="posterBtn button" id="myBtn" value="$ClassPosterID">
       <i class="fas fa-image"></i> View poster
   </button>
</div>
<div class="myModal modal" id="myModal">
   <div class="modal-content">
       <span class="close">&times;</span>
       <img src="image-2.jpg" class="modal-content" />
   </div>
</div>

main.css:

.modal {
   display: none;
   position: fixed;
   z-index:9999;
   padding-top:60px;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   overflow: auto;
   background-color: rgb(0,0,0);
   background-color: rgba(0,0,0,0.4);
}
.modal-content {
   margin: auto;
   display: block;
   width: 80%;
   max-width: 700px;
}
.modal-content {
   -webkit-animation-name: zoom;
   -webkit-animation-duration: 0.6s;
   animation-name: zoom;
   animation-duration: 0.6s;
}

jQuery.js:

    var modal = document.getElementById('myModal');
    var span = document.getElementsByClassName("close")[0];
    $(document).ready(function() {
        $('.posterBtn').click(function(event) {
        event.preventDefault();
            modal.style.display = "block";
            });
    });
    span.onclick = function() {
      modal.style.display = "none";
    }
    window.onclick = function(event) {
      if (event.target == modal) {
        modal.style.display = "none";
      }
    }

我单击的第一个按钮在弹出第一张图像时工作正常,但是当我单击第二个按钮时,它正常工作,但与第一张图像弹出相同的第一个ID。它应该显示第二个ID和第二个图像。

什么是使它正常工作的正确方法?我做错了吗?

3 个答案:

答案 0 :(得分:1)

  • 如果您决定使用jquery,那么请使用jquery,不要将纯JavaScript与jquery结合使用
  • Id应该是唯一的,因此即使它是from循环,您也可以添加id="myModal+' i '+"来向id添加一个数字..如果php中的循环使用id="myModal.' i '."

  • 问题是您通过id定义了myModal,每次都会捕获相同/第一个模态..您需要将模态引用到您单击的按钮上


$(document).ready(function() {
   $('.posterBtn').click(function(event) {
       //event.preventDefault();
       var GetModal = $(this).closest('.PosterButton').next('.modal'); // get the next modal
       GetModal.show();  // show the next modal
   });
   $('.modal span.close').on('click', function(){  // modal close span
      $('.modal').hide(); // hide modal
   });

   // To close modal
   // when modal click close the modal
   $('.modal').on('click' , function(){
     $(this).hide();
   });
   // prevent the modal to close when clicking on the modal content div
   $('.modal-content').on('click' , function(e){
    e.stopPropagation();
   });
});

$(document).ready(function() {
   $('.posterBtn').click(function(event) {
       //event.preventDefault();
       var GetModal = $(this).closest('.PosterButton').next('.modal'); // get the next modal
       GetModal.show();  // show the next modal
   });
   $('.modal span.close').on('click', function(){  // modal close span
      $('.modal').hide(); // hide modal
   });
   
   // To close modal
   // when modal click close the modal
   $('.modal').on('click' , function(){
     $(this).hide();
   });
   // prevent the modal to close when clicking on the modal content div
   $('.modal-content').on('click' , function(e){
    e.stopPropagation();
   });
});
.modal {
   display: none;
   position: fixed;
   z-index:9999;
   padding-top:60px;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   overflow: auto;
   background-color: rgb(0,0,0);
   background-color: rgba(0,0,0,0.4);
}
.modal-content {
   margin: auto;
   display: block;
   width: 80%;
   max-width: 700px;
   background : #fff;
}
.modal-content {
   -webkit-animation-name: zoom;
   -webkit-animation-duration: 0.6s;
   animation-name: zoom;
   animation-duration: 0.6s;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="PosterButton">
   <button class="posterBtn button" id="myBtn" value="$ClassPosterID">
       <i class="fas fa-image"></i> View poster 1
   </button>
</div>
<div class="myModal modal" id="myModal-1">
   <div class="modal-content">
       <span class="close">&times;</span>
       <div>Poster 1</div>
       <img src="image-1.jpg" class="modal-content" />
   </div>
</div>

<div class="PosterButton">
   <button class="posterBtn button" id="myBtn" value="$ClassPosterID">
       <i class="fas fa-image"></i> View poster 2
   </button>
</div>
<div class="myModal modal" id="myModal-2">
   <div class="modal-content">
       <span class="close">&times;</span>
       <div>Poster 2</div>
       <img src="image-2.jpg" class="modal-content" />
   </div>
</div>

答案 1 :(得分:1)

首先,ID在页面上应该是唯一的。

对于模态,最简单的方法是,如果一个接一个地使用触发器和模态,那就是使用next(),它会紧随其后。

要知道已单击的确切按钮(收到事件操作),我们将使用this。 当我们在click按钮上this找到next元素并show时,它将是伪代码。

我在下面根据您的代码制作了一个工作示例:

https://jsfiddle.net/ahentea/8vjten5L/1/

答案 2 :(得分:0)

由于使用的是JQuery,因此可以轻松创建一个指向第二个PosterButton的选择,而无需处理id。