Heim  >  Artikel  >  Web-Frontend  >  JavaScript 指导方针_基础知识

JavaScript 指导方针_基础知识

WBOY
WBOYOriginal
2016-05-16 19:15:33696Durchsuche

本节的内容是:在使用JavaScript进行编码的过程中,其他一些需要了解的重要事项。
JavaScript对大小写敏感
名为"myfunction"的函数和名为"myFunction"的函数是两个不同的函数,同样,变量"myVar"和变量"myvar"也是不同的。

JavaScript对大小写敏感 - 所以当你创建或使用变量、对象及函数时,请注意字符的大小写。
空格
JavaScript会忽略多余的空格。所以你可以在代码中添加适当的空格,使得代码的可读性更强。下面的两行是等效的:

name="Hege"
name = "Hege"换行
你可以在字符串内部使用反斜杠对代码进行折行。下面的例子是正确的:

document.write("Hello \
World!")但是不能像这样折行:

document.write \
("Hello World!")注释:
你可以使用两个斜杠来添加注释: 

//this is a comment
document.write("Hello World!")也可以使用/*和*/:(这样可以创建多行的注释块) 

/* This is a comment
block. It contains
several lines */

document.write("Hello World!")

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn