jQuery class selector doesn't work and id selector works only with “body”

前端 未结 5 641
生来不讨喜
生来不讨喜 2021-01-21 17:32

I\'m trying to apply CSS values with jquery but class selector or id selector does not not work for some reason.

Here is my fiddle:

As you can see nothing happen

5条回答
  •  隐瞒了意图╮
    2021-01-21 18:09

     $("kitten").css("background-position", x + "px 0");
    

    this line is wrong..

    this one will do the trick

     $("#kitten").css("background-position", x + "px 0");
    

    you need to put the right string literals for ID selectors check it right here.

提交回复
热议问题