单引号和双引号
JS中
字符串 单引号(建议)
https://stackoverflow.com/questions/242813/when-to-use-double-or-single-quotes-in-javascript
Jquery中
http://contribute.jquery.org/style-guide/js#Strings
JSON(正确的JSON是这样的:属性名必须用双引号包裹)
必须双引号
http://blog.csdn.net/eric6/article/details/5841462
JAVA
双引号
单引号里面可以直接使用双引号,单引号里使用单引号需要加上转义字符。反之同理。
https://segmentfault.com/q/1010000004519527