こんにちは私は3つのテキストボックスを含むdivを持っています、コントロールがdivタグの外に出たら呼び出される関数が必要です、フォーカスがdivの外に移動できるので、onclickイベントを使用したくありませんキーボードのタブキーまたはその他の方法。また、jqueryなどのjavascriptライブラリを使用してこれを実現する方法があるかどうかも知りたいです。
ありがとう、これはサンプルのhtmlコードです
<html>
<head>
<title>Div Onblur test</title>
<script type="text/javascript">
function Callme() {
alert("I am Called")
}
</script>
</head>
<body>
<div onblur="javascript:Callme();">
<input type=text value ="Inside DIV 1" />
<input type=text value ="Inside DIV 2" />
<input type=text value ="Inside DIV 3" />
</div>
<input type=text value ="Outside DIV" />
</body>
</html>
Onblurイベントハンドラーを各入力要素にバインドし、それらのいずれかにフォーカスがあるかどうかをハンドラーでチェックインできます( document.activeElement を使用)。
<script type="text/javascript">
function checkBlur() {
setTimeout(function () {
if (document.activeElement != document.getElementById("input1") &&
document.activeElement != document.getElementById("input2") &&
document.activeElement != document.getElementById("input3")) {
alert("I am called");
}
}, 10);
}
</script>
<!-- ... -->
<div>
<input type="text" id="input1" value="Inside DIV 1" onblur="checkBlur()" />
<input type="text" id="input2" value="Inside DIV 2" onblur="checkBlur()" />
<input type="text" id="input3" value="Inside DIV 3" onblur="checkBlur()" />
</div>
<input type="text" value="Outside DIV" />
または、代わりに、jQueryを使用するとプロセスを簡略化できます(特に入力が多い場合)。
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#theDiv input").bind("blur", function () {
setTimeout(function () {
var isOut = true;
$("#theDiv input").each(function () {
if (this == document.activeElement) isOut = false;
});
if (isOut) {
// YOUR CODE HERE
alert("I am called");
}
}, 10);
});
});
</script>
<!-- ... -->
<div id="theDiv">
<input type="text" value="Inside DIV 1" />
<input type="text" value="Inside DIV 2" />
<input type="text" value="Inside DIV 3" />
</div>
<input type="text" value="Outside DIV" />
編集:他の要素がフォーカスする時間を確保するために、イベントハンドラーをsetTimeout
内にラップしました。
フォーカスを取得するには、divにtabindex = 0を追加する必要があります。だから何かのような
<div tabindex="-1" onblur="Callme();">
それをする必要があります。
Div内に3つのテキストボックスがある同様のシナリオで次のjQueryスクリプトを使用しました。
<script type="text/javascript">
$(document).ready(function () {
$("jQuerySelectorToGetYourDiv").focusout(function (e) {
if ($(this).find(e.relatedTarget).length == 0) {
// Focus is now outside of your div. Do something here.
// e.Target will give you the last element within the
// div to lose focus if you need it for processing.
}
});
});
</script>
<html>
<head>
<title>Div Onblur test</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript">
function Callme() {
alert("I am Called");
}
$(function() {
var callme;
$('#onblur-callme input')
.focus(function() {
callme = false;
})
.blur(function() {
callme = true;
setTimeout(function() {
if (callme) {
Callme();
}
}, 1);
});
});
</script>
</head>
<body>
<div id="onblur-callme">
<input type="text" value ="Inside DIV 1" />
<input type="text" value ="Inside DIV 2" />
<input type="text" value ="Inside DIV 3" />
</div>
<input type="text" value ="Outside DIV" />
</body>
</html>
おそらく、「onChange」イベントの方がニーズに対応できるでしょう。入力フィールドではなく、DIVがクリックされる状況は考えられません。