这段代码添加了一个gif骚动者:

function glitch_player_display(arg1,arg2) {
        jQuery('#loader').show(); // show loading...
    jQuery.ajax({
        type: 'POST',
        url: ajaxglitch_playerajax.ajaxurl,
        data: {
            action: 'ajaxglitch_player_ajaxhandler',
            arg1: arg1,
            arg2: arg2
        },
        success: function(data, textStatus, XMLHttpRequest) {
            $('#loader').hide();
            var loadpostresult = '#showglitchplayer';
            jQuery(showglitchplayer).html('');
            jQuery(showglitchplayer).append(data);
        },
        error: function(MLHttpRequest, textStatus, errorThrown) {
            alert(errorThrown);
        }
    });
}


和HTML:

<img src="js/ajax-loader.gif" id="loader" style="display:none;"/>


但是我想使用this throbber by function

这是我正在尝试的代码

function glitch_player_display(arg1,arg2) {
        var throb = Throbber();
        throb.appendTo( document.getElementById( 't1' ) );
        throb.start();
                    jQuery.ajax({//etc as above


HTML

<div id="t1" class="throb"></div>


throbber.js代码已添加到.js文档,并且在控制台中未出现任何错误,但也没有任何问题。我打错电话了吗?一旦正确调用,$('#loader').hide()的等效项是什么?

最佳答案

有烦恼!一直在那里。白色th子在白色背景中。隐藏。

停止它是在throb.stop();上添加success:的问题(在上面的代码中$('#loader').hide();在其中)。

Throbber.js很不错。

关于javascript - 通过start()函数而不是show()元素来添加throbber,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23947398/

10-12 01:01