var Page_INIT = function () {
$( document).bind("mouseover", function (e) {//mouse は
if (e.target.tagName.toUpperCase() == "INPUT") {
var input = e.target; に移動します。
if (input.type == "text") {//テキストボックスの場合
if (window.Page_FocusTimer) {//フォーカス状態の場合
window.clearTimeout(window .Page_FocusTimer);//フォーカス状態をクリアします
}
window.Page_FocusTimer = window.setTimeout(function () { //この匿名メソッドを 0.2 ミリ秒ごとに実行します
if (!input.value) {/ /コンテンツが空の場合は、フォーカスとして設定します
try {
input.focus();
} catch (e) { }
}
},
}
}
}).bind("mouseout", function (e) {//マウスアウト
if (e.target.tagName.toUpperCase() == "INPUT") { //処理中のイベント ソース オブジェクト 名前 (HTML タグなど) が大文字に変換されると、 INPUT
var input = e.target
if (input.type == "text") {
となります。 if (window.Page_FocusTimer) {
window.clearTimeout(window.Page_FocusTimer)
}
}
}
}