条件に応じてボタンの色を変更するための jQuery スニペットが必要です-> で使用WooCommerce
していWordPress
ます。私が欲しいのは:カートのアイテムがある場合は0
表示したいのですが、カートにアイテムがあるred color
場合はボタンが表示されますgreen
質問する
88 次
1 に答える
1
項目番号を div/span に入れて ID を指定します。eaxample の場合、「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 に答える