search

Home  >  Q&A  >  body text

jQuery 里的 ID 选择器和 class 选择器有何不同?

男神男神2943 days ago1105

reply all(3)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:11:55

    What is the difference between ID selector and class selector in jQuery? -PHP Chinese Q&A-What is the difference between the ID selector and the class selector in jQuery? -PHP Chinese website Q&A

    Please watch and learn.

    reply
    0
  • 我是灰太狼

    我是灰太狼2016-12-20 15:30:51

    ID选择器是使用#来标识的,而class选择器是使用.(点)来标识的,再有我们的id选择器的名字只能在页面中出现一次,而class可以出现多次

    reply
    0
  • 迷茫

    迷茫2016-12-20 15:27:44

    如果你用过 CSS,你也许就知道 ID 选择器和 class 选择器之间的差异,jQuery 也同样如此。ID 选择器使用 ID 来选择元素,比如 #element1,而 class 选择器使用 CSS class 来选择元素。当你只需要选择一个元素时,使用 ID 选择器,而如果你想要选择一组具有相同 CSS class 的元素,就要用 class 选择器。在面试过程中,你有很大几率会被要求使用 ID 选择器和 class 选择器来写代码。

    reply
    1
  • Cancelreply