js的屬性物件的specified屬性用法簡單介紹

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

此屬性可以檢測指定元素是否已經具有指定名稱的屬性。

如果有則返回true,否則返回false。

語法結構:

[JavaScript] 純文字檢視 複製程式碼
attribute.specified

程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script type="text/javascript">
window.onload=function(){
  var oshow=document.getElementById("show");
  var obt=document.getElementById("bt");
  obt.onclick=function(){
    oshow.innerHTML=this.getAttributeNode("id").specified
  }
}
</script>
</head>
<body>
<div id="show"></div>
<input type="button" id="bt" value="檢視效果"/>
</body>
</html>

上面的程式碼實現了我們的要求,可以檢測按鈕是否具有id屬性。


相關文章