在我的页面上我显示了数据库中的一些项目。
如果我的项目的某些值为< 0
这是我想在Item.quantity == 0
时隐藏的div<div class="campaign__offer-buybox" >
<a href="/DodajDoKoszyka.aspx?id_produkt=<%#:Item.id_produkt %>" style="text-decoration: none;">
<span class="campaign__offer-buybox--button js-add-to-cart">
<span><i class="fa fa-shopping-cart" aria-hidden="true" style="margin-right: 5px;"></i>Kup Teraz</span>
</span>
</a>
</div>
我该怎么做?
答案 0 :(得分:0)
你的帖子中没有很多信息,但这是你要做的基本方式
<script>
if(item.quantity =< 0){
var x = document.getElementsByClassName("campaign__offer-buybox");
x.style.display = "none"; }else{
var x = document.getElementsByClassName("campaign__offer-buybox");
x.style.display = "block";
}
</script>
祝你好运