如何利用js獲取取得焦點的元素

螞蟻小編發表於2017-03-27

本章節介紹一下如何利用javascript獲取當前頁面中獲取焦點的元素物件。

程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
ul li{
  width:250px;
  height:30px;
  list-style:none;
  font-size:12px;
}
</style>
<script type="text/javascript">
window.onload=function(){
  var inputs=document.getElementsByTagName("input");
  inputs[0].focus();
  document.activeElement.style.color="green";
}
</script>
</head>
<body>
<ul>
  <li>姓名:<input type="text" value="螞蟻部落"/></li>
  <li>住址:<input type="text" value="青島市南區"/></li>
</ul>
</body>
</html>

上面的程式碼實現了我們的要求,能夠將獲取焦點的元素中的字型顏色設定為綠色。

document.activeElement指向獲取焦點的元素物件。

相關文章