jQuery live不会在调整大小和滚动时触发

时间:2012-02-17 17:03:49

标签: jquery

有人可以告诉我为什么以下代码没有触发console.logresize上的scroll? (jquery 1.7肯定已加载)。

<script>
$(window).live('scroll resize', function ()
{
    console.log('am i working?');
}); 
</script> 

感谢。

1 个答案:

答案 0 :(得分:2)

在jQuery 1.7及更高版本中不推荐使用

live

As of jQuery 1.7, the .live() method is deprecated.

<强> check Documentation here 即可。而是使用.on() on documentation