如果我有这个HTML:
<a name="foo">Foo</a>
如何通过名称foo选择锚元素?它没有id属性.
$('a[name=foo]')
它被称为attribute equals selector.