所以我正在尝试做一个网上商店。我已连接数据库,一切正常。但是现在我要制作产品说明页面。当某人单击特定产品时,如何告诉JS它只需要显示该产品数据即可。如何指出该产品。希望你能理解。我正在使用node
,express
和ejs
。
您可以通过使用display
属性集display: none
进行添加,然后在单击集display: block
上进行添加。希望能解决您的问题。但是添加一些您试图更好地理解该问题的代码,这里没有人为您编码。
$('.product').click( function() {
$('.detail').css('display','block')
});
.product {
width:100px;
height:50px;
background-color:#ccc;
cursor:pointer;
}
.detail {
display:none;
width:100px;
height:50px;
background-color:#ccc;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="product">
product
</div>
<div class="detail">
product detail
</div>
部分