在不同的库中使用单一或双重的最可能原因是程序员的偏爱和/或API一致性。除了保持一致之外,请使用最适合该字符串的那个。
使用其他类型的引号作为文字:
alert('Say "Hello"');alert("Say 'Hello'");
这可能会变得复杂:
alert("It's "game" time.");alert('It's "game" time.');
ES6中的另一个新选项是使用以下字符的Template文字
back-tick:
alert(`Use "double" and 'single' quotes in the same string`);alert(`Escape the ` back-tick character and the ${ dollar-brace sequence in a string`);
模板文字为以下内容提供了一种简洁的语法:变量插值,多行字符串等等。
请注意,JSON正式指定为使用双引号,这可能值得考虑,具体取决于系统要求。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)