我想要一个 jQuery 代码片段来根据条件更改按钮的颜色-> 我正在使用WooCommerce
with WordPress
. 我想要的是:如果有购物车项目,0
那么我想显示red color
,如果购物车中有任何项目,那么按钮就会消失green
问问题
88 次
1 回答
1
将您的项目编号放在 div/span 中并提供一个 id。例如,我将“item_container”作为该 div 的 id,然后:
$(document).ready(function(){
var item_nu = $('#item_container').html().parseInt();
if(item_nu=='0')
{
//write your code here to make the button red
}
else{
//write your code here to make the button green
}
})
于 2013-05-11T06:42:35.013 回答