有可能计数切换吗

有可能计数切换吗

我很好奇,有可能计数切换吗?因为我有一个问题,当我将其悬停并悬停多次并选择一项时,该按钮将推至底部且无法看到。还是那是解决此问题的另一种方法?

更新

即使我将鼠标悬停并悬停并再次悬停它也不会多次推至底部。

click here for js fiddle

JS

        $("#popup_survey_whitebox").hover(function () {
        $('#popup_survey_whitebox_content').stop().animate({
            opacity: 1,
            height: "toggle"
        }, 500, function () {
            $("label#popup_survey_label_title").text(orig); // Here put the original text.

        }).css('position', 'relative');

    }, function () {
        $('#popup_survey_whitebox_content').stop().animate({
            opacity: 1,
            height: "toggle"
        }, 500, function () {
            $("label#popup_survey_label_title").text(newText); // Here put the new text with "..."

        }).css('position', 'relative');
    });

最佳答案

最后,我找到了解决此问题的方法。

      $("#popup_survey_whitebox").hover(function () {
    $('#popup_survey_whitebox_content').finish().animate({
        opacity: 1,
        height: "toggle"
    }, 500, function () {
        $("label#popup_survey_label_title").text(orig); // Here put the original text.

    }).css('position', 'relative');

}, function () {
    $('#popup_survey_whitebox_content').finish().animate({
        opacity: 1,
        height: "toggle"
    }, 500, function () {
        $("label#popup_survey_label_title").text(newText); // Here put the new text with "..."

    }).css('position', 'relative');
});


将两个动画的$('#popup_survey_whitebox_content').stop()更改为$('#popup_survey_whitebox_content').finish()

关于javascript - 有可能计数切换吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27812127/

10-09 16:18