getAttribute()和attr()一點區別

antzone發表於2017-04-18

關於標題中兩個方法的基本用法可以參閱以下兩篇文章。

(1).getAttribute()可以參閱getAttribute()一章節。

(2).attr()可以參閱jQuery attr()一章節。

它們兩個都是為了獲取指定元素的指定屬性的值,下面只介紹一下它們之間的一個不同點。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function (){ 
  var str = "";
  str = str+"getAttribute:" + ele.getAttribute("name")+"<br/>";
  str = str + "attr:" + $("input").attr("name");
  $("#antzone").html(str);
})
</script>
</head>
<body>
<input id="ele" type="text" value="螞蟻部落"/>
<div id="antzone"></div>
</body>
</html>

如果指定的屬性不存在,那麼返回值一個是null,一個是undefined。

相關文章