button click event lost due to the alert box in text box onblur event(由于文本框 onblur 事件中的警报框导致按钮单击事件丢失)
问题描述
我创建了一个简单的 Web 表单,其中包含一个文本框和一个按钮.我已经捕捉到了文本框的onblur事件.
I have created a simple web form, containing one text box and one button. I have captured the onblur event of the text box.
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<script language="javascript" type="text/javascript">
function onTextBoxBlur()
{
alert("On blur");
return true;
}
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:TextBox ID="TextBox1" runat="server" onblur="onTextBoxBlur();"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button" />
</form>
</body>
</html>
当我在文本框中输入一些值并单击按钮时,会发生文本框的 onblur 事件,但不会发生按钮的 onclick 事件.而且,当我从 js 函数中删除警报框时,它工作正常.按钮单击事件的某些方式丢失了.我认为这是由于警报框.知道为什么会这样吗?
When I enter some value in text box and click on the button, then the onblur event of textbox occurs, but the onclick of the button doesn't. And, when I remove the alert box from the js function then it works fine. Some how the button click is event is lost. I think it is due to the alert box. Any idea why is this so?
推荐答案
一个按钮的点击"有两个部分,鼠标向下和鼠标向上.当您将鼠标放在按钮上时,它会获得焦点 - 模糊文本框并触发警报.由于警报对话框是模态的,它们会暂停页面上的所有活动,因此按钮不会检测到鼠标向上并且您的点击不会完成.
A "click" of a button has two parts, mouse down and mouse up. When you mouse down on the button, it gains focus - blurring the text box and firing your alert. Since alert dialogs are modal, they halt all activity on the page so the button doesn't detect the mouse up and your click doesn't complete.
可以使用模糊事件中的计时器解决您的问题,并在按钮的 mousedown 事件中取消该计时器:
It could be possible to work around your issue using a timer within the blur event, and cancelling that timer within the mousedown event of the button:
var timer;
function onTextBoxBlur()
{
timer = window.setTimeout(function () { alert("On blur"); }, 0);
return true;
}
function onButtonMouseDown()
{
clearTimeout(timer);
}
这篇关于由于文本框 onblur 事件中的警报框导致按钮单击事件丢失的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:由于文本框 onblur 事件中的警报框导致按钮单击事件丢失


基础教程推荐
- 直接将值设置为滑块 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01