我在这个sample code中发现了jQuery事件redraw
:
$(window).on("redraw",function(){ [SOME CODE] });
我没有在jQuery网站中找到任何文档about it,也没有在任何JS教程或参考中找到。
这是什么?
答案 0 :(得分:1)
必须是一些自定义事件,插件正在触发代码中的某些位置。
以下是可以在jQuery中创建的自定义事件的示例
DEMO :http://jsfiddle.net/Lk79jovg/
$('.test').on('keyup', function(){
var $this = $(this);
if($this.val() == 'some text'){
$(window).trigger('custom');
}
});
$(window).on('custom', function(){
alert('some text was typed in the input');
});