我正在尝试实现这个功能,除了每个IE版本(图)之外的任何地方都可以使用
<script type="text/javascript">
$(function() {
$('#twitterUserTimeline').liveTwitter('#regional from:el_carabobeno', {refresh: false, mode: 'search', showAuthor: false}, function(container, newCount){
$(".tweet:not(:first)").addClass('hidden'); // hide all twets but the first one
});
$("#twitterUserTimeline").hover(function () { // on hover
$(".tweet:not(:first)").removeClass('hidden'); // reveals them
}, function () { // on out
$(".tweet:not(:first)").addClass('hidden'); // hide them again
}
);
});
</script>
IE似乎不喜欢那些选择器,因为如果我删除它们一切正常。
答案 0 :(得分:2)