我不知道自己在做什么,所以我只想“复制我看到的内容而不知道自己在做什么”...
<script>
// This works:
$window.scroll($.throttle(50, function(event) {
// stuff happens
}));
// These don't work
target.addEventListener($.throttle(50,"mouseover", function(event) {
}, false));
I also tried
target.addEventListener.throttle("mouseover", function(event) {
// do stuff
}, false), 50);
</script>
好像是一个setTimeout
有人可以提供帮助。
答案 0 :(得分:1)
mouse/__init__.py