переключаться по двойному щелчку - PullRequest
0 голосов
/ 28 мая 2011

ищет способ сделать двойной клик, вот мой код:

$('#mydiv').toggle(function() {
  $('#post').css({'height' : '188'});
}, function() {
  $('#post').css({'height' : '48'});
});     

Ответы [ 2 ]

2 голосов
/ 28 мая 2011
$('#mydiv').dblclick(function () {
  $('#post').height($('#post').height() > 100 ? 48 : 180);
});

Или, может быть, вы хотите это:

$(".generic-expand-button").each(function () {
    $(this).dblclick(function() {
        $(this).closest(".post").height($(this).closest(".post").height() > 100 ? 48 : 180);
    });
});
1 голос
/ 28 мая 2011

Использование события двойного щелчка jQuery: http://api.jquery.com/dblclick/

...