这是代码。Button1 和 button2 未定义。
$('.game_time').each(function() {
// bind_toggle($(this).find('a.preview_tweets.selected'), $(this).find('.with_tweets'),
// $(this).find('a.collapse_tweets'), $(this).find('.without_tweets'));
button1.click = function() {
if ($(this).find('a.preview_tweets.selected').hasClass('open')){
} else {
if ($(this).find('a.preview_tweets.selected').length == 0) {
get_preview_tweets('<%= game.away_team.url %>,<%= game.home_team.url %>',
3, '<%= game.id %>');
}
$(this).find('a.preview_tweets.selected').show()
$(this).find('a.preview_tweets.selected').addClass('open');
}
}
button2.click = function() {
if ($(this).find('a.preview_tweets.selected').hasClass('open')){
$(this).find('a.preview_tweets.selected').hide();
} else {
}
}
});
我对 Javascript 完全陌生,所以如果有一些明显的事情,我很抱歉。