标签: jquery
有没有人知道为什么这个选择器在没有关闭括号的情况下工作正常?
$("div[name=test1")
并给出与此相同的结果:
$("div[name=test1]")
HTML:
<div name="test1"> Content Test 1</div>
Fiddle
答案 0 :(得分:5)
如果您在sizzle.js上查看github代码。在第856行,您可以对选择器上的属性引用进行此处理:
// Make sure that attribute selectors are quoted expr = expr.replace( rattributeQuotes, "='$1']" );
实际上,这将[name=test1
[name=test1
[name='test1']