jQuery attr() - 获取属性值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery attr() - 获取属性值相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
alert($("#runoob").attr("href"));
});
});
</script>
</head>

<body>
<p><a href="http://www.cnblogs.com/yl514/p/7086393.html" id="runoob">测试</a></p>
<button>显示 href 属性的值</button>
</body>
</html>


















以上是关于jQuery attr() - 获取属性值的主要内容,如果未能解决你的问题,请参考以下文章

jQuery属性与样式

Jquery attr()方法 属性赋值和属性获取

jquery 通过attr获取属性只有一个值的解决

jQuery属性和样式

jquery不能获取多个attr值问题

jquery attr方法和prop方法获取input的checked属性问题