深入理解javascript中的焦點管理


前面的話

  焦點作為javascript中的一個重要功能,基本上和頁面交互都離不開焦點。但卻少有人對焦點管理系統地做總結歸納。本文就javascript中的焦點管理作詳細介紹

 

焦點元素

  到底哪些元素可以獲得焦點呢?默認情況下,只有表單元素可以獲得焦點。因為只有表單元素可以交互

<input type="text" value="223">

   讓非表單元素獲得焦點也是有辦法的,先將tabIndex屬性設置為-1,再調用focus()方法

<div id="test" style="height:30px;width:100px;background:lightgreen">div</div>
<button id="btn">div元素獲得焦點</button>
<script>
btn.onclick = function(){
    test.tabIndex = -1;
    test.focus();    
}
test.onfocus = function(){
    this.style.background = 'pink';
}
</script>

activeElement

  document.activeElement屬性用於管理DOM焦點,保存着當前獲得焦點的元素

  [注意]該屬性IE瀏覽器不支持

<div id="test" style="height:30px;width:100px;background:lightgreen">div</div>
<button id="btn">div元素獲得焦點</button>
<script>
console.log(document.activeElement);//<body>
btn.onclick = function(){
    console.log(document.activeElement);//<button>
    test.tabIndex = -1;
    test.focus();    
    console.log(document.activeElement);//<div>
}
</script>

 

獲得焦點

  元素獲得焦點的方式有4種,包括頁面加載、用戶輸入(按tab鍵)、focus()方法和autofocus屬性

【1】頁面加載

  默認情況下,文檔剛剛加載完成時,document.activeElement中保存的是body元素的引用。文檔加載期間,document.activeElement的值為null

<script>
console.log(document.activeElement);//null
</script>
<body>
<script>
console.log(document.activeElement);//<body>
</script>
</body>

【2】用戶輸入(按tab鍵)

  用戶通常可以使用tab鍵移動焦點,使用空格鍵激活焦點。比如,如果焦點在一個鏈接上,此時按一下空格鍵,就會跳轉到該鏈接

  說到tab鍵,就不能不提到tabindex屬性。tabindex屬性用來指定當前HTML元素節點是否被tab鍵遍歷,以及遍歷的優先級

  1、如果tabindex=-1,tab鍵跳過當前元素

  2、如果tabindex=0,表示tab鍵將遍歷當前元素。如果一個元素沒有設置tabindex,默認值就是0

  3、如果tabindex大於0,表示tab鍵優先遍歷。值越大,就表示優先級越小

  下列代碼中,使用tab鍵時,button獲得焦點的順序是2、5、1、3

<div id="box">
    <button tabindex= "3">1</button>
    <button tabindex= "1">2</button>
    <button tabindex= "0">3</button>
    <button tabindex= "-1">4</button>
    <button tabindex= "2">5</button>    
</div>
<script>
box.onkeyup = function(){
    document.activeElement.style.background = 'pink';
}
</script>

【3】focus()

  focus()方法用於將瀏覽器的焦點設置到表單字段,即激活表單字段,使其可以響應鍵盤事件

  [注意]前面介紹過,若非表單元素,設置為tabIndex為-1,也可以獲取焦點

<span id="test1" style="height:30px;width:100px;">span</span>
<input id="test2" value="input">
<button id="btn1">span元素獲得焦點</button>
<button id="btn2">input元素獲得焦點</button>
<script>
btn1.onclick = function(){test1.tabIndex=-1;test1.focus();}
btn2.onclick = function(){test2.focus();}
</script>

【4】autofocus

  HTML5表單字段新增了autofocus屬性,只要設置這個屬性,不用javascript就能自動把焦點移動到相應字段 

  [注意]該屬性只能用於表單元素,普通元素即使設置tabIndex="-1"也不生效

<input autofocus value="abc">

hasFocus()

  document.hasFocus()方法返回一個布爾值,表示當前文檔之中是否有元素被激活或獲得焦點。通過檢測文檔是否獲得了焦點,可以知道是不是正在與頁面交互

console.log(document.hasFocus());//true
//在兩秒鍾內點擊其他標簽頁,使焦點離開當前頁面
setTimeout(function(){
    console.log(document.hasFocus());//false
},2000);

 

失去焦點

  如果使用javascript使元素失去焦點,那么就要使用blur()方法

  blur()方法的作用是從元素中移走焦點。在調用blur()方法時,並不會把焦點轉移到某個特定的元素上;僅僅是將焦點從調用這個方法的元素上面移走而已

<input id="test" type="text" value="123">
<button id="btn1">input元素獲得焦點</button>
<button id="btn2">input元素失去焦點</button>
<script>
btn1.onclick = function(){test.focus();}
btn2.onclick = function(){test.blur();}
</script>

焦點事件

  焦點事件會在頁面獲得或失去焦點時觸發。利用這些事件並與document.hasFocus()方法及 document.activeElement屬性配合,可以知曉用戶在頁面上的行蹤

  焦點事件共包括下面4個

blur

  blur事件在元素失去焦點時觸發。這個事件不會冒泡

focus

  focus事件在元素獲得焦點時觸發。這個事件不會冒泡

focusin

  focusin事件在元素獲得焦點時觸發。這個事件與focus事件等價,但它冒泡

focusout

  focusour事件在元素失去焦點時觸發。這個事件與blur事件等價,但它冒泡

  [注意]關於focusin和focusout事件,除了IE瀏覽器支持DOM0級事件處理程序,其他瀏覽器都只支持DOM2級事件處理程序

<div id="box"style="display:inline-block;padding:25px;background-color:lightgreen;">
    <div id="boxIn" style="height: 50px;width: 50px;background-color:pink;">123</div>
</div>
<button id="btn1">內容為123的div元素獲取焦點</button>
<button id="btn2">內容為123的div元素失去焦點</button>
<button id="reset">還原</button>
<script>
reset.onclick = function(){history.go();}
//focus()方法
btn1.onclick = function(){
    boxIn.tabIndex= -1;
    boxIn.focus();
}
//blur()方法
btn2.onclick = function(){
    boxIn.blur();
}
//focusin事件
if(boxIn.addEventListener){
    boxIn.addEventListener('focusin',handler)    
}else{
    boxIn.onfocusin = handler;
}
function handler(){
    this.style.backgroundColor ='lightblue';
}
if(box.addEventListener){
    box.addEventListener('focusin',handler)    
}else{
    box.onfocusin = handler;
}    
//blur事件
function fnBlur(){
    this.style.backgroundColor = 'orange';
}
boxIn.onblur = fnBlur;
box.onblur = fnBlur;
</script>

  由運行結果可知,focusin事件可冒泡;而blur事件不可冒泡

  焦點事件常用於表單展示及驗證

  比如,獲取焦點時,修改背景顏色;失去焦點時,還原背景顏色並驗證

<div id="box">
    <input id="input1" type="text" placeholder="只可以輸入數字">
    <input id="input2" type="text" placeholder="只可以輸入漢字">    
    <span id="tips"></span>
</div>
<script>
if(box.addEventListener){
    box.addEventListener('focusin',fnIn);
    box.addEventListener('focusout',fnOut);
}else{
    box.onfocusin = fnIn;
    box.onfocusout = fnOut;
}
function fnIn(e){
    e = e || event;
    var target = e.target || e.srcElement;
    target.style.backgroundColor = 'lightgreen';
}
function fnOut(e){
    e = e || event;
    var target = e.target || e.srcElement;
    target.style.backgroundColor = 'initial';
    //如果是驗證數字的文本框
    if(target === input1){
        if(!/^\d*$/.test(target.value.trim())){
            target.focus();
            tips.innerHTML = '只能輸入數字,請重新輸入'
            setTimeout(function(){
                tips.innerHTML = ''
            },500);
        }
    }
    //如果是驗證漢字的文本框
    if(target === input2){
        if(!/^[\u4e00-\u9fa5]*$/.test(target.value.trim())){
            target.focus();
            tips.innerHTML = '只能輸入漢字,請重新輸入'
            setTimeout(function(){
                tips.innerHTML = ''
            },500);
        }
    }    
}
</script>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM