有人可以告诉我为什么以下代码没有触发console.log
和resize
上的scroll
? (jquery 1.7肯定已加载)。
<script>
$(window).live('scroll resize', function ()
{
console.log('am i working?');
});
</script>
感谢。
答案 0 :(得分:2)
live
。
As of jQuery 1.7, the .live() method is deprecated.
<强> check Documentation here 即可。而是使用.on()
on documentation