当前位置:Gxlcms > JavaScript > JavaScript基础问答三_基础知识

JavaScript基础问答三_基础知识

时间:2021-07-01 10:21:17 帮助过:3人阅读

9. JavaScript的注释(Comments in JavaScript)
Q:我如何在JavaScript代码中插入注释?
A:JavaScript支持三种不同类型的注释:
多行C样式的注释。 包括在/* 和 */ 内的内容都是注释,例如:
/* This is a comment */
/* C-style comments can span
as many lines as you like,
as shown in this example */
C++样式的单行注释。这些注释以//开始,到行尾结束:
// This is a one-line comment
使用HTML注释开始序列()。考虑这个实例:
This is also a one-line JS comment
because JS ignores the closing characters
of HTML-style comments
HTML样式的注释在JavaScript代码中并不常见。(//引导的单行注释更简单也更易读)。不过,强烈建议使用HTML注释将JavaScript代码从旧版本浏览器中隐藏。
10. 从旧版浏览器中隐藏JS代码 (Hidding JS code from old browsers)
Q:我如何从不支持JavaScript的旧版中隐藏JS代码?
A:为了阻止旧版浏览器显示JS代码,可以使用以下方法:
在开头的
从实际上讲,你会发现创建.js文件保存JavaScript函数是非常方便的,你可以在不同的HTML文件中重用这些函数。然而,请注意,一些旧版本浏览器(像 Navigator 2.x 和Explorer 3.x)不会加载外部的JavaScript文件。
13. JavaScript中的保留字(Reserved words in JavaScript)
Q:JavaScript中有哪些保留字呢?
A:JavaScript语言的保留字都列在了下面。(其中一些在JavaScript语言中使用,而在JavaScript保留是为了兼容或者以后可能的扩展。)当选择JavaScript变量名时,要避免这些保留字!
abstract else instanceof switch
boolean enum int synchronized
break export interface this
byte extends long throw
case false native throws
catch final new transient
char finally null true
class float package try
const for private typeof
continue function protected var
debugger goto public void
default if return volatile
delete implements short while
do import static with
double in super
除了以上的保留字,最好也避免以下标识符作为JavaScript变量名。这些是Netscape Navigator或者Internet Explorer中客户端对象、方法或者属性的名字。
alert hidden outerWidth
all history packages
anchor image pageXOffset
anchors images pageYOffset
area isNaN parent
array java parseFloat
assign JavaArray parseInt
blur JavaClass password
button JavaObject pkcs11
checkbox JavaPackage plugin
clearTimeout innerHeight prompt
clientInformation innerWidth prototype
close layer radio
closed layers reset
confirm length screenX
crypto link screenY
date location scroll
defaultStatus Math secure
document mimeTypes select
element name self
elements navigate setTimeout
embed navigator status
embeds netscape String
escape Number submit
eval Object sun
event offscreenBuffering taint
fileUpload onblur text
focus onerror textarea
form onfocus top
forms onload toString
frame onunload unescape
frames open untaint
frameRate opener valueOf
function option window
getClass outerHeight

人气教程排行