In JavaScript you can add special characters to a text string by using the backslash sign. 使用backslash标记你可以在JS中添加特殊文字。 Insert Special Characters 插入特殊文字 The backslash (\) is used to insert apostrophes, new lines, quotes, and other special characters i Posted at 08-06-05 by 佚名 views(11)
Some other important things to know when scripting with JavaScript.? 使用JS时还应该了解的一些重要信息。 JavaScript is Case Sensitive JS是区分大小写的 A function named myfunction is not the same as myFunction and a variable named myVar is not the same as myvar. 函数名称为myfunct Posted at 08-06-05 by 佚名 views(12)
JavaScript is an Object Oriented Programming (OOP) language. JS是安置对象的编程语言(面向对象)。 An OOP language allows you to define your own objects and make your own variable types. OOP语言可以让你自定义对象和变量类型。 Object Oriented Programming 被安置对象的编程 Ja Posted at 08-06-05 by 佚名 views(11)
The String object is used to manipulate a stored piece of text. 字符串对象被用来操作存储的文字片段 String object 字符串对象 The String object is used to manipulate a stored piece of text. 用来操作被存储的文字片段 Examples of use: 使用实例: The following example uses the length property o Posted at 08-06-05 by 佚名 views(15)
The Array object is used to store a set of values in a single variable name. 阵列(数组)对象用来在一单独的变量名称内存储一系列值。 Defining Arrays 定义数组 The Array object is used to store a set of values in a single variable name. 数组对象被用来存储值(在单一的变量名称中) We define an Array object Posted at 08-06-05 by 佚名 views(23)
The Boolean object is used to convert a non-Boolean value to a Boolean value (true or false). 布尔对象用来把一个非布尔型的值转换为布尔值(真或假) Boolean Object 布尔对象 The Boolean object is an object wrapper for a Boolean value. 布尔对象是布尔值的包装对象。 The Boolean object is used to con Posted at 08-06-05 by 佚名 views(8)
The Math object allows you to perform common mathematical tasks. 数学对象允许你来执行一般数学上的任务(一些数学上的运算) Math Object 数学对象 The Math object allows you to perform common mathematical tasks. 数学对象可以让你执行一些普通的数学运算 The Math object includes several mathematical values Posted at 08-06-05 by 佚名 views(9)
In addition to the built-in JavaScript objects, you can also access and manipulate all of the HTML DOM objects with JavaScript. 除了JS内置的对象外,你还可以通过JS来访问和操作所有的HTML DOM对象。 The HTML DOM The HTML DOM is a W3C standard and it is an abbreviation Posted at 08-06-05 by 佚名 views(26)
|







