我有以下功能:jQuery函數改變CSS
,並想進一步的功能添加到點擊功能。我是新來的jQuery,並試圖學習,但仍然不明白閱讀它。我認爲我可以創建並附加一個if-條款,但仍然與此相矛盾。 所以我是這樣認爲:
$this.css($('.year').is(':visible') ? 'color', 'red' : 'color', 'green');
if the click function takes place and the .contents is visible change the css setting of .year to red and if not use color green
,那就太好,如果有人能幫助我。
非常感謝。
'$ this.css( '顏色',$( '的一年。 ')是(':可見') '紅色':? '綠色');'(移動''顏色','部分之前?:) –
你好,謝謝你的回答。這不起作用。也許我忘了說點什麼。我會更新我的問題。 – bonny
請注意,如果任何具有'.year'類的元素可見,則.is(':visible')'將返回true,如果您有多個具有該類的元素,則可能是問題。 – adeneo