<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
</script>
<a href="http://www.google.com" id="aGoogle1">Google Link</a>
<script type="text/javascript">
$(function()
{
console.log($('a[href="http://www.google.com"]'));
});
</script>
在 chrome->console 中,我可以看到$('a[href="http://www.google.com"]')
返回所选元素,并且我可以看到它具有以下属性:id:“aGoogle1”。所以我的问题是:
怎么输出属性,比如id,我试过$('a[href="http://www.google.com"]'.id)
了,还是不行?