我的网站上有一个模态CTA,可用于销售线索表格。我想要一个用于网站其他部分的新页面,所以我只复制了我制作的引导程序模版,并将其放在网站的另一部分中。但是当我去点击按钮时,什么也没发生。这很奇怪,因为我只是直接从主页复制了它,所以唯一更改的是数据目标和ID。我在这里做错了什么?
.clothing{
border: 1px solid black;
}
.quickview__icon{
color: #ff0000;
cursor: pointer;
}
.popup{
width: 50%;
height: 90%;
position: fixed;
right: 25%;
z-index: 1000;
background-color: grey;
top: 5%;
opacity: 75%;
}
.close{
font-size: 2em;
position: fixed;
right: 26%;
}
.close:hover{
color: red;
cursor: pointer;
}
答案 0 :(得分:1)
我认为您在模态#
值之前错过了data-target
属性中的id
。
实际:data-target='ee-cta-call'
预期:data-target='#ee-cta-call'