在jquery中,有人在“”双引号中提到类名和ID,有人用单引号''表示......这两件事有什么区别。
问问题
110 次
4 回答
2
在 JavaScript 中,双引号和单引号绝对没有区别。只是偏好问题。
于 2013-03-29T13:20:23.413 回答
1
于 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 回答