function toggleLinkSelection(link){
if($(link).css('border-top-color') == 'red'){
$(link).css({'border-top-color': 'transparent'});
} else {
$("div[id$='OptionsLink']").css({'border-top-color': 'transparent'});
$(link).css({'border-top-color': 'red'});
}
}
我在我的if語句中做錯了什麼?它從不測試真實。在瀏覽器中我檢查項目,它應該測試真實。我嘗試用#F00和#FF0000代替紅色,這沒有幫助。 鏈接變量= #testID 謝謝。麻煩jquery if語句與css屬性
嗯......試一下'console.log($(link).css('border-top-color'))'看看你得到了什麼? – JCOC611