1

document.getElementById('SOMEID')和之间的真正区别是什么$("[id$='SOMEID']")

4

1 回答 1

5

$(..)变体使用jQuery,它允许您使用选择器来查找要搜索的内容(类、id、标签等)。这getElementById()是普通的 javascript,显然只按元素 id 搜索。

$("#foo") // select elements with id foo
$(".foo") // select elements with class foo
$("foo") // select foo-tags

您可以在这个官方jQuery 教程中了解更多关于 jQuery 对选择器的支持。

于 2013-01-20T23:12:14.420 回答