这是第一次看到这个。我已经查了一下,并没有找到任何与$(())语法有关的内容。
<script>
'use strict';
$(() => {
// code goes here
});
</script>
答案 0 :(得分:3)
这在很大程度上等同于:
<script>
'use strict';
$(function() {
// code goes here
});
</script>
假设将$
变量分配给jQuery库,那将是一个“普通”文档就绪回调函数。
您可以在此处详细了解箭头功能:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions