我有以下功能:
$(document).ready(function () {
$('.contents').hide();
$('.slide').click(function () {
var $this = $(this);
$(this).siblings('.contents').slideToggle(200, function () {
$this.text($(this).is(':visible') ? 'close' : 'open');
});
});
});
并想为点击功能添加更多功能。我是 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
如果有人可以帮助我,那就太好了。
非常感谢。