0

在加载所有要在库和图库视图中浏览的项目后,我需要修改新的 Wordpress 3.5 媒体管理器的输出,但我终生无法找到可以绑定的事件...

有谁知道当所有图像都已加载或我可以使用的类似事件时是否触发了“wpMediaEditorLoaded”事件?

4

1 回答 1

0

我发现我可以用这个

wp.media.view.Attachments.prototype.on('ready',function(){
    //this runs once for each tab in the media editor so unbind previous versions
        jQuery(document).unbind('ajaxComplete', mediaLibraryLoaded);
        jQuery(document).bind('ajaxComplete', mediaLibraryLoaded);
      });
var mediaLibraryLoaded = function(e, xhr, options) {        
         jQuery(document).unbind('ajaxComplete', mediaLibraryLoaded);
        //do stuff here
       }
于 2013-02-25T19:38:09.930 回答