gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 20:39:31 25 4
gpt4 key购买 nike

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

我知道它必须是不同的 ID 才能工作,但是每个按钮作为循环函数所以它必须是相同的 ID。

文件.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>

主.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 和第二个图像。

实现此功能的正确方法是什么?我做错了吗?

最佳答案

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

  • 问题是您通过 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>

关于javascript - 如何在具有相同类的多个按钮的单击事件中使用 Javascript 添加多个相同的 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55949488/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com