哪个先执行?

发布于 2024-11-27 16:24:43 字数 279 浏览 4 评论 0原文

代码如下:

<script>
    document.getElementById('btn').addEventListener('mousedown',(function(){
        console.log('code');
    }));
</script>
<input id="btn" type="button" onmousedown="console.log('button')">

哪一个将首先执行,为什么?

Here is the code:

<script>
    document.getElementById('btn').addEventListener('mousedown',(function(){
        console.log('code');
    }));
</script>
<input id="btn" type="button" onmousedown="console.log('button')">

Which one will execute first and why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不知在何时 2024-12-04 16:24:43

执行内联脚本时,document.getElementById('btn') 的计算结果为 null,并引发 TypeError

那么你的 input 标签无法解析。

但是,让我们假设您向 onmousedown 属性添加了一个结束 " 并将 script 元素排序在 input 元素之后。然后您会看到,

button
code

因为事件按照它们定义的顺序执行。

The inline script executes, document.getElementById('btn') evaluates to null, and a TypeError is thrown.

Then your input tag fails to parse.

But let’s pretend you add a closing " to the onmousedown attribute and order the script element after the input element. Then you would see

button
code

because the events execute in the order they’re defined in.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文