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() - 获取属性值的主要内容,如果未能解决你的问题,请参考以下文章