基于jquery实现的移入页面上空文本框时,让它变为焦点,移出清除焦点

时间:2024-02-09 11:50:55
【文件属性】:

文件名称:基于jquery实现的移入页面上空文本框时,让它变为焦点,移出清除焦点

文件大小:24KB

文件格式:PDF

更新时间:2024-02-09 11:50:55

input jq jquery

代码如下: var Page_INIT = function () { $(document).bind(“mouseover”, function (e) {//鼠标移入 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


网友评论