寻找被点击元素的值

问题描述 投票:0回答:1

所以我正在尝试做一个网上商店。我已连接数据库,一切正常。但是现在我要制作产品说明页面。当某人单击特定产品时,如何告诉JS它只需要显示该产品数据即可。如何指出该产品。希望你能理解。我正在使用nodeexpressejs

javascript node.js ejs
1个回答
0
投票

您可以通过使用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>

部分

© www.soinside.com 2019 - 2024. All rights reserved.