最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

基于jquery實(shí)現(xiàn)的移入頁(yè)面上空文本框時(shí),讓它變?yōu)榻裹c(diǎn),移出清除焦點(diǎn)

 更新時(shí)間:2011年07月26日 20:19:45   作者:  
基于jquery實(shí)現(xiàn)的移入頁(yè)面上空文本框時(shí),讓它變?yōu)榻裹c(diǎn),移出清除焦點(diǎn)的實(shí)現(xiàn)代碼。
復(fù)制代碼 代碼如下:

var Page_INIT = function () {
$(document).bind("mouseover", function (e) {//鼠標(biāo)移入
if (e.target.tagName.toUpperCase() == "INPUT") {
var input = e.target;
if (input.type == "text") {//如果是文本框
if (window.Page_FocusTimer) {//如果處于焦點(diǎn)狀態(tài)
window.clearTimeout(window.Page_FocusTimer);//清除焦點(diǎn)狀態(tài)
}
window.Page_FocusTimer = window.setTimeout(function () { //每0.2豪秒去執(zhí)行這個(gè)匿名方法一次
if (!input.value) {//如果內(nèi)容為空,則設(shè)為焦點(diǎn)
try {
input.focus();
} catch (e) { }
}
}, 200);
}
}
}).bind("mouseout", function (e) {//鼠標(biāo)移出
if (e.target.tagName.toUpperCase() == "INPUT") { //被處理的事件源對(duì)象它的名稱(即HTML標(biāo)記)轉(zhuǎn)為大寫后如果是INPUT
var input = e.target;
if (input.type == "text") {
if (window.Page_FocusTimer) {
window.clearTimeout(window.Page_FocusTimer);
}
}
}
});
}

相關(guān)文章

最新評(píng)論

平利县| 洪江市| 克山县| 横山县| 合川市| 库车县| 凤翔县| 青铜峡市| 中宁县| 深州市| 新河县| 奉新县| 西丰县| 睢宁县| 静安区| 南投市| 江孜县| 夏河县| 罗定市| 太康县| 静海县| 雅江县| 凤翔县| 土默特右旗| 祁东县| 上虞市| 普安县| 黄浦区| 鹤壁市| 三原县| 桃园市| 汉寿县| 平利县| 白山市| 荆州市| 合阳县| 四子王旗| 汉寿县| 商水县| 安塞县| 麻阳|