


This article will briefly introduce the properties and methods of some commonly used objects in JavaScript, as well as several useful system functions.
1. String methods
JavaScript has powerful string processing functions. Only with these string methods can we write colorful web pages. In this section, we will introduce how to use the methods and properties related to string objects.
1. The length attribute of the string object
The string object has only one attribute, length. This attribute value indicates the relative number of characters included in the string. The syntax is: stringName.length
2. String object methods
JavaScript provides multiple string methods to help control the display of information. String methods can be divided into several major categories, such as attribute methods, navigation methods, etc. Below we will introduce the categories.
(1) Attribute method The string attribute method specifies the way ordinary text is displayed on the screen. It provides an ideal way to make your homepage more attractive.
blink() The blink() method causes the text to blink. The syntax is as follows: string.blink();
bold() The bold() method makes the string bold. The syntax is as follows: string.bold();
fontcolor() The fontcolor() method can change the color of a single string, or change the color every time the page is reloaded or an event occurs. Similarly, this method also has a corresponding HTML identifier - the syntax of fontcolor() is string.fontcolor(color); Here, color is a legal representation of a color.
italics() italics() method changes the string into italics to distinguish it from other text. The syntax of italics() is as follows: string.italics();
(2) Capitalization method JavaScript strictly distinguishes between upper and lower case letters. In order to easily compare two strings, they must be converted to uppercase or lowercase. The string object's case method supports conversion between upper and lower case.
toLowerCase() The tolowerCase() method converts each character in a given string to lowercase. The syntax is as follows: string=stringValue.toLowerCase();
toUpperCase() The opposite of the tolowerCase() method is the toUpperCase() method, which converts a given string into an uppercase string. string=stringValue.toUpperCase();
(3) Operation method The operation method provides many methods for searching strings in a text string, including charAt(), indexO f(), Four methods: LastIndexOf() and substring(). We can use these methods to format and operate string variables entered by the user. The charAt() and substring() methods extract one or more characters from a string, and the remaining two methods return the first value of the value to be found. The numeric value of the position at which characters appear in the string.
charAt() The charAt() method returns the character at the specified position from a given string. It is used as follows: string.charAt(index); where index is a number between 0 and less than the string length (the string length can be obtained through the Length attribute),
substring() substring() method from a Returns a substring of a larger string. Its syntax is as follows: string.substring(indexA, indexB) Both indexA and indexB are numeric values between 0 and the length of the string. They are the two subscripts of the string.
indexOf() The indexOf() method returns the position of the substring that matches the specified string in a long string. It searches the given string from left to right, and the syntax is as follows: string.indexOf(searchValue, [fromIndex]); where string is the string in which indexOf() wants to find searchValue, and searc hValue is whatever it wants to find. character or substring. fromIndex is an optional option that specifies the location where the search should begin. The range of fromIndex is similar to charAt() and Subs string() (0 to length-1). It cannot be greater than or equal to length. If fromIndex is not specified, this method assumes its default value and searches the entire string. The return value of indexOf() is the offset (from the beginning of the string) of the first character where searchValue first appears. Even if fromIndex is specified, the return value is still relative to the beginning of the string (se archValue that may appear in some previous places will be ignored).
lastIndexOf() The lastIndexOf() method is similar to the IndexOf() method, except that it searches the string from right to left. lastIndexOf() still gives the position of the first character of the searched string, not the position of the last character. The syntax of the lastIndexOf() method is as follows: string.Last indexOf(searchValue); searchValue is still the string you want to find.
(4) Navigation method When using hypertext, you will come into contact with the concepts of anchors and links. An anchor is like a bookmark placed on a web page (where you can easily return to it); a link is a guide to another page (or an anchor on the same or different page).
anchor() The anchor() method is used to set an anchor. Its syntax is very simple: string.anchor(anchorName); Consider the following example: var indexString="Index"; document.writeln(indexString.anchor( "anchorName")); This statement prints the text Index on the screen; anchorName is the real name of the anchor. Anchors like this are typically used by links to jump to the anchor's actual location on the page.
link() The function of link() is to jump to the specified target. It is equivalent to a standard HTML quote (a hypertext quote specified by the HREF attribute).Its syntax is also very simple: linkText.link(href) linkText is the text on the screen. The href attribute is not necessarily an anchor, it can also be a legal URL reference. The following example shows how to use link() to create a link that jumps directly to the previously created anchor; var indexStirng="Index" document.writeln(indexString.link("#" "anchorName") " ") This statement Prints the text Index of the link format on the screen (usually underlined); anchorName is the actual name of the anchor. When this link is clicked, this anchor will appear at the top of the browser user window. Please note: Be sure to add a # sign to the reference of the anchor within the same document. When adding the # sign, enclose it in double quotes and connect it with the complete quote with a plus sign. See the previous example. If the # sign is omitted, the target of the link is a file rather than an anchor. Clicking on this link will cause the browser to attempt to load the file named anchorName (in this case). Because this file does not exist, the browser will generate a Notfound error message.
2. Window method
The window is the interface for the browser to interact with the user. Controllable windows can be created using window methods and properties in JavaScript. In this section, some window methods and properties will be introduced.
1. Predefined windows (dialog boxes)
JavaScript provides three methods to generate "simple" windows (or dialog boxes): alert (), confirm () and prompt ( ). Although we have no control over the position, buttons, or size of these dialog boxes, they provide a preliminary mechanism to prompt the user or receive input. Each method is discussed below.
alert() The alert() method creates an independent message window. The syntax is as follows: alert("message") where "message" is the text string to be displayed in the prompt window.
confirm() The confirm() method is used to request the user's approval before proceeding with an event. It gives the user the opportunity to stop an event from occurring. The syntax of this method is as follows: confirm("message") where message is a text string.
prompt() The prompt() method receives feedback from the user, who can type information from the keyboard or select with the mouse if they receive a default value. The syntax of this method is as follows: prompt("message") If you want to specify a default value, you can use: prompt("message", importDefault) where "message" is text or a number. Users can type any information. Therefore, although a variable expects a number to be entered for calculation, it may also be input to it text. If the Cancel key and the Close key are clicked, pr ompt() returns a null value.
2. Customized windows
Although the three windows above are very simple, they have a common disadvantage that they are inflexible, that is, their size and style cannot be changed. Next, let's discuss how to customize windows in JavaScript. First, we should know how to create a window.
open() The open() method will create a new window. The effect of creating a window using this method is similar to selecting the New Web Browser from the File menu item. The syntax of this method is as follows: windowVar=window.open("URL", "windowName") or you can also define the attributes of a window: windowVar=window.open("URL", "windowName", "windowAttribute") where WindowName is the name of the window to be created. URL is a text string that specifies the URL to be called when the current new window is created. If no URL is specified (use the empty string ""), the window is empty. windowName represents the name of the window. windowFeatures are optional attributes that can be assigned to a window, such as a toolbar, location, directory, status bar, menu bar, scroll bar, resizing capabilities, width and height (see attached table). Set them with commas as delimiters and outer double quotes.
Window attributes The usage form of these attributes is as follows: feeture=value where feature is the attribute to be selected, value (except for width and height attributes) is either yes (or 1) to activate the attribute, or no ( or 0) to eliminate it. The syntax of width and height is as follows: feature=pixels where pixels is any positive integer (or positive integer variable) that determines the size of the new window (in pixels).
close() Use the close() method, its syntax is as follows: windowReference.close() You can use any of the following functions to close the current window: window.close(), self.close(), close(). We can close an independent window by referencing a window's windowVar (the value is generated when the open() method is called). For example: the command used when creating a window is: WindowB=open(",","anotherwindow","windth=80, height=40); We can close it in any other window using the command: windowB.close () To close the top-level window, you can use the following method top.close(). Of course, if you want to close the current window, we can use any self-closing command
JavaScript provides us with some very useful common internal objects. and methods. Users do not need to use scripts to implement these functions. This is the true purpose of object-based programming. JavaScript provides three objects: string (string), math (numeric calculation) and Date (date). Some other related methods.This provides very favorable conditions for programmers to quickly develop powerful script programs.
1. Commonly used internal objects
There are two situations when referencing object properties and methods in JavaScript: One is that the object is a static object, that is, when referencing the properties or methods of the object There is no need to create an instance for it; while another object must create an instance for it when referencing its object or method, that is, the object is a dynamic object.
The reference to the internal object of JavaScript is centered around its properties and methods. Therefore, clarifying the static nature of objects is of great significance for mastering and understanding the internal objects of JavaScript.
1), string object
o string object: internal staticity.
o When accessing properties and methods, you can use the (.) operator.
o Basic usage format: objectName.prop/methods
(1) Attributes of string objects
This object has only one attribute, length. It indicates the number of characters in the string, including all symbols.
Example:
mytest="This is a javascript"
mystringlength=mytest.length
Finally, mystringlength returns the length of the mytest string as 20.
(2) Methods of string objects
There are 19 methods in string objects. It is mainly used for the display of strings in Web pages, font size, font color, character search, and character case conversion.
The main methods are as follows:
o Anchor point anchor(): This method creates the same anchor tag as in the Html document. Use anchor as in Html (A Name=""). Accessed via the following format: string.anchor(anchorName).
o Control methods for character display
big font display, Italics() italic display, bold() bold font display, blink() character flashing display, small() character display in small font, fixed () Fixed highlighted word display, fontsize(size) controls font size, etc.
o Font color method; fontcolor(color)
o String case conversion
toLowerCase() - lowercase conversion, toUpperCase() uppercase conversion. The following converts a given string to uppercase and lowercase respectively:
string=stringValue.toUpperCase and string=stringValue.toLowerCase.
o Character search: indexOf[charactor,fromIndex]
Search for the first occurrence of character starting from the specified formIndtx position.
Return a part of the string: substring(start,end)
Return all characters from start to end.
2), math object of arithmetic function
Function: Provide some self-described operations except addition, subtraction, multiplication and division. Such as logarithms, square roots, etc.
Staticity: Static object
(1) Main attributes
Math provides 6 attributes. They are the constant E often used in mathematics, the natural logarithm LN10 with base 10, and The natural logarithm of base 2 is LN2, PI is 3.14159, the square root of 1/2 is SQRT1-2, and the square root of 2 is SQRT2.
(2) Main methods
Absolute value: abs()
Sine and cosine values: sin(), cos()
Arc sine and arc cosine: asin(), acos()
Tangent Arctangent: tan(),atan()
Rounding: round()
Square root: sqrt()
Value based on several powers: Pow(base,exponent)
...
3), Date and time objects
Function: Provide an object related to date and time.
Static and dynamic: Dynamic, that is, you must use the New operator to create an instance. Example:
MyDate=New Date()
Date object does not provide direct access properties. Only has methods to get and set date and time.
Date starting value: January 1, 1770 00:00:00.
1. Time method for getting date
getYear(): Returns the number of years
getMonth(): Returns the number of the current month
getDate(): Returns the number of the current day
getDay(): Returns the day of the week How many days
getHours(): returns the number of hours
getMintes(: returns the number of minutes
getSeconds(): returns the number of seconds
getTime(): returns the number of milliseconds
(2) Set date and time :
setYear(); set the year
setDate(): set the number of the current month
setMonth(): set the number of the current month
setHours(): set the number of hours
setMintes(): set Number of minutes
SetSeconds(): Set the number of seconds
SetTime (): Set the number of milliseconds
...
2. System functions in javascript
System functions in javascript are also called internal methods . It provides system functions that are not related to any object. You do not need to create any instances to use these functions.
1. Return the value in the string expression:
Method name: eval (string expression) formula), for example:
test=eval("8 9 5/2");
2. Return the string ASCI code:
Method name: unEscape (string)
3. Return the character Encoding:
Method name: escape(character)
4. Return real numbers:
parseFloat(floustring);
5. Return numbers in different bases:
parseInt(numbestring,rad.X )
where radix is the base of the number, numbs is the string number

不同的电脑系统在调整屏幕亮度的操作方法上会有些不同,最近就有使用win7系统的网友不知道win7怎么调整屏幕亮度,看久了电脑眼睛比较酸痛。下面小编就教下大家win7调整屏幕亮度的方法。具体的操作步骤如下:1、点击win7电脑左下角的“开始”,在弹出的开始菜单中选择“控制面板”打开。2、在打开的控制面板中找到“电源选项”打开。3、也可以用鼠标右键电脑右下角的电源图标,在弹出的菜单中,点击“调整屏幕亮度”,如下图所示。两种方法都可以用。4、在打开的电源选项窗口的最下面可以看到屏幕亮度调整的滚动条,直

如果我们手头没有手机,只有电脑,但我们必须拍照,我们可以使用电脑内置的监控摄像头拍照,那么如何打开win10监控摄像头,事实上,我们只需要下载一个相机应用程序。打开win10监控摄像头的具体方法。win10监控摄像头打开照片的方法:1.首先,盘快捷键Win+i打开设置。2.打开后,进入个人隐私设置。3.然后在相机手机权限下打开访问限制。4.打开后,您只需打开相机应用软件。(如果没有,可以去微软店下载一个)5.打开后,如果计算机内置监控摄像头或组装了外部监控摄像头,则可以拍照。(因为人们没有安装摄

随着科技的不断发展,机器视觉技术在各个领域得到了广泛应用,如工业自动化、医疗诊断、安防监控等。Java作为一种流行的编程语言,其在机器视觉领域也有着重要的应用。本文将介绍基于Java的机器视觉实践和相关方法。一、Java在机器视觉中的应用Java作为一种跨平台的编程语言,具有跨操作系统、易于维护、高度可扩展等优点,对于机器视觉的应用具有一定的优越性。Java

目前有很多屏幕亮度调整软件,我们可以通过使用软件进行快速调整或者通过显示器上自带的亮度功能进行调整。以下是详细的Win7屏幕亮度调整方式,您可以通过教程中的方法进行快速调整即可。Win7系统电脑怎么调节屏幕亮度教程:1、依次点击“计算机—右键—控制面板”,如果没有也可以在搜索框中进行搜索。2、点击控制面板下的“硬件和声音”,或者点击“外观和个性化”都可以。3、点击“NVIDIA控制面板”,有些显卡可能是AMD或者Intel的,请根据实际情况选择。4、调节图示中亮度滑块即可。5、还有一种方法,就是

Go语言是近年来备受青睐的编程语言,因其简洁、高效、并发等特点而备受开发者喜爱。其中,方法(Method)也是Go语言中非常重要的概念。接下来,本文就将详细介绍Go语言中方法的定义和使用。一、方法的定义Go语言中的方法是带有接收器(Receiver)的函数,它是一个与某个类型绑定的函数。接收器可以是值类型或者指针类型。用于接收者的参数可以在方法名

PHP是一个广泛使用的服务器端编程语言,它的许多功能和特性可以将其用于各种任务,包括文件下载。在本文中,我们将了解如何使用PHP创建文件下载脚本,并解决文件下载过程中可能出现的常见问题。一、文件下载方法要在PHP中下载文件,我们需要创建一个PHP脚本。让我们看一下如何实现这一点。创建下载文件的链接通过HTML或PHP在页面上创建一个链接,让用户能够下载文件。

如今微软的Windows系统已经更新换代到了Windows10版本。很多以前还在使用Windows7系统的用户都想体验这个新版本Windows10系统。下面小编就来说说如何下载win10系统下载的方法,大家快来看看。1、首先下载一个小白重装系统软件,然后点击在线重装,下载win10系统。2、然后就开始系统镜像的下载了。3、系统镜像下载完成就是环境部署了。然后win10系统就下载完成啦。4、重启之后开始安装系统,安装完成就能进入桌面咯。以上就是如何下载win10系统的方法介绍啦,希望能帮助到大家。

随着前端开发的快速发展,越来越多的框架被用来构建复杂的Web应用程序。Vue.js是流行的前端框架之一,它提供了许多功能和工具来简化开发人员构建高质量的Web应用程序。createApp()方法是Vue.js中的一个核心方法之一,它提供了一种简单的方式来创建Vue实例和应用程序。本文将深入探讨Vue中createApp方法的作用,其如何使用以及使用时需要了解


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version
