0

在jquery中,有人在“”双引号中提到类名和ID,有人用单引号''表示......这两件事有什么区别。

4

4 回答 4

2

在 JavaScript 中,双引号和单引号绝对没有区别。只是偏好问题。

于 2013-03-29T13:20:23.413 回答
1

“提及班级名称和ID”是什么意思?

顺便说一句,一般来说单双看看这里:

何时在 JavaScript 中使用双引号或单引号?

于 2013-03-29T13:22:12.640 回答
1

在某些情况下,当您还想在字符串中使用双引号时,您可能需要使用单引号,例如:

<script>

    // Finds all inputs with a name attribute that contains the word 'man' and sets the value with some text.
    $('input[name~="man"]').val('mr. man is in it!');

</script>

除此之外,它们之间没有任何区别。只是偏好问题。

于 2013-03-29T13:26:48.590 回答
0

在 jquery 中有人使用类名,id 像这样 $('.someclass') $('#someclass') 或 $(".someclass") $("#someclass")。那么这两者之间的主要区别是什么

于 2013-04-01T14:17:28.637 回答