問題描述
我創建了一個簡單的 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 事件中的警報框導致按鈕單擊事件丟失的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!