最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Should blur or mousedown fire first? - Stack Overflow

programmeradmin1浏览0评论
<!doctype html>
<body>
<input onblur="alert('b');">
<button onmousedown="alert('m');">a</button>
</body>

For some reason blur seems to fire first on Firefox/IE (but mousedown seems to fire first for Chrome/Safari).

Yet when we change the code to this:

<!doctype html>
<body>
<input onblur="document.title+='b';">
<button onmousedown="document.title+='m';">a</button>
</body>

Now for some reason mousedown seems to fire first for all browsers.

  1. What may be the explanation for this abnormality?

  2. Based on W3C specs, which should be the standard behavior?

<!doctype html>
<body>
<input onblur="alert('b');">
<button onmousedown="alert('m');">a</button>
</body>

For some reason blur seems to fire first on Firefox/IE (but mousedown seems to fire first for Chrome/Safari).

Yet when we change the code to this:

<!doctype html>
<body>
<input onblur="document.title+='b';">
<button onmousedown="document.title+='m';">a</button>
</body>

Now for some reason mousedown seems to fire first for all browsers.

  1. What may be the explanation for this abnormality?

  2. Based on W3C specs, which should be the standard behavior?

Share Improve this question edited Jul 22, 2022 at 18:59 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Aug 4, 2011 at 9:51 PacerierPacerier 89.8k111 gold badges385 silver badges644 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 10

So for this test I made this fiddle

<input onblur="document.getElementById('msg').innerHTML+=new Date().getTime()+' - blur<br/>'">
<button onmousedown="document.getElementById('msg').innerHTML+=new Date().getTime()+' - md<br/>'">a</button>
<div id="msg">---<br/></div>

On Windows XPsp3, in Fx5, IE8, Opera 11, Safari5, Chrome 13 it is ALL mousedown first, blur after

UPDATE: EXCEPT when you use alert. You cannot count on anything working the way you want them to if you put an alert somewhere.

For example some (older) browsers would go into a never ending loop if you alerted an error onblur and then tried to focus the offending field, which would then blur the empty next field

Oh gosh, that is a neverending story. I don't want to know how many hours I spent to figure that behavior correctly. As you mentioned, it behaves differently, so there actually is no "correct". However I'm not that much aware of the W3C spec about this particular instance (if there actuall is one?), but for know, you have to create some logic to have things fired in the correct order. It's pretty disgusting tho.

发布评论

评论列表(0)

  1. 暂无评论