document.getElementById('SOMEID')
和$("[id$='SOMEID']")
之间的真正区别是什么?
?
答案 0 :(得分:5)
$(..)
变种使用jQuery,它允许您使用选择器查找您要搜索的内容(类,ID,标记等)。 getElementById()
是普通的javascript,显然只按元素ID搜索。
$("#foo") // select elements with id foo
$(".foo") // select elements with class foo
$("foo") // select foo-tags
您可以在此官方jQuery tutorial中了解有关jQuery对选择器的支持的更多信息。