js心得2

Jun 07, 2016 pm 03:43 PM
name whole Experience text form

1.表单中的文本框完整的名称应该是: window.document.myform.text1,其中window可以省略,所以我们前面写为: document.myform.text1就是这样来的。 1)window窗口对象是代表整个浏览器窗口,是最顶层的根。 2)往下包括history历史对象(存放历史信息,可

1.表单中的文本框完整的名称应该是:

window.document.myform.text1,其中window可以省略,所以我们前面写为:

document.myform.text1就是这样来的。

1)window窗口对象是代表整个浏览器窗口,是最顶层的根。

2)往下包括history历史对象(存放历史信息,可以前进后退的功能)、

 

2.Window 对象:

名称

说明

document

表示给定浏览器窗口中的 HTML 文档。

history 

包含有关客户访问过的URL的信息。

location

包含有关当前 URL 的信息。

name

设置或检索窗口或框架的名称。

status 

设置或检索窗口底部的状态栏中的消息。

screen

包含有关客户端的屏幕和显示性能的信息。

 

  

方法

名称

说明

alert  (“m提示信息")

显示包含消息的对话框。

confirm(“提示信息”)

显示一个确认对话框,包含一个确定取消按钮

prompt(”提示信息“)

弹出提示信息框

open  ("url","name")

打开具有指定名称的新窗口,并加载给定 URL 所指定的文档;如果没有提供 URL,则打开一个空白文档

close  ( )

关闭当前窗口

setTimeout(”函数”,毫秒数)

设置定时器:经过指定毫秒值后执行某个函数

clearTimeout(定时器对象)

取消setTimeout设置

confirm弹出确认对话框,点击确定返回true ,取消返回false

3.open(”打开窗口的url”,”窗口名”,”窗口特征”)

 

窗口的特征如下,可以任意组合:

height: 窗口高度;

width: 窗口宽度;

top: 窗口距离屏幕上方的象素值;

left:窗口距离屏幕左侧的象素值;

toolbar: 是否显示工具栏,yes为显示;

menubar,scrollbars 表示菜单栏和滚动栏。

resizable: 是否允许改变窗口大小,yes或1为允许

location: 是否显示地址栏,yes或1为允许

status:是否显示状态栏内的信息,yes或1为允许;

4.全屏显示窗口:

screen.availWidth---屏幕的宽度 (除 Windows 任务栏之外)

screen.availHeight---屏幕的高度 (除 Windows 任务栏之外)。

例如:

也可用:screen.width---显示器屏幕的宽度

              screen.height---显示屏幕的高度 

?        5.window对象提供了两种方法来实现定时器:

–      window. setTimeout(表达式[expression],延时时间[n]),每N秒执行一次

–      window. setInterval(表达式[expression],延时时间[n]),过N秒执行一次,循环!

注意:expression可以是用引号括起来的代码,也可以是一个函数名(不能带任何参数的函数):

setTimeout("move()",1000);或setTimeout(move,1000);

?        如何取消定时器:

–      取消setTimeout:window.clearTimeout(id);

–      取消setInterval:window.clearInterval(id);

6.屏幕(screen)对象

?        屏幕对象是JavaScript运行时自动产生的对象

?        屏幕对象常用属性

–      height:返回显示屏幕的高度。

–      width :返回显示器屏幕的宽度。

–      availHeight :返回显示屏幕的高度 (除 Windows 任务栏之外)。

–      availWidth:返回显示屏幕的宽度 (除 Windows 任务栏之外)。

–      colorDepth:返回目标设备或缓冲器上的调色板的比特深度(每像素中用于颜色的位数,其值为1,4,8,15,16,24,32)。

?        网页可见区域宽:document.body.clientWidth

?        网页可见区域高:document.body.clientHeight

?        网页可见区域宽:document.body.offsetWidth (包括边线的宽)

?        网页可见区域高:document.body.offsetHeight (包括边线的宽)

?        网页正文全文宽:document.body.scrollWidth

?        网页正文全文高:document.body.scrollHeight

?        网页被卷去的高:document.body.scrollTop

?        网页被卷去的左:document.body.scrollLeft

?        网页正文部分上:window.screenTop

?        网页正文部分左:window.screenLeft

?        屏幕分辨率的高:window.screen.height

?        屏幕分辨率的宽:window.screen.width

?        屏幕可用工作区高度:window.screen.availHeight

?        屏幕可用工作区宽度:window.screen.availWidth

?        处理地址栏信息:location对象

–      Location对象是wodow对象的子对象,包含了窗口对象的网页地址内容,即URL。例如:

?        window.location=“http://www.sohu.com”;//跳转到页面

?        window.loaction.href=“http://www.sohu.com”;//同上

?        window.location.reload();//刷新页面

?        Window.location.replace(url);//用url刷新当前网页

–      用三种方法改变当前网页的网站:

方法1:window.open()   

方法2:
 location.href   

方法3: location.replace()

7.Location对象属性

名称

说明

host

设置或检索位置或 URL 的主机名和端口号

hostname

设置或检索位置或 URL 的主机名部分

Href

设置或检索完整的 URL 字符串

方法:

名称

说明

assign("url")

加载 URL 指定的新的 HTML 文档。 

reload()

重新加载当前页

replace("url")

通过加载 URL 指定的文档来替换当前文档

8.历史记录(history)对象

?        历史记录对象是窗口对象下的一个子对象。它实际上是一个对象数组,包含了一系列的用户访问过的url地址,用于浏览器工具栏中的“前进”和“后退”按钮。

?        常用属性和方法

–      history.length:历史对象的个数

–      history.back();显示浏览器历史列表中后退一个网址的网页

–      history.go(n)或者history.go(网址):显示浏览器的历史列表中第n个网址的网页,n>0 前进  n

–      history.forward();//显示浏览器历史列表中前进一个网址的网页

9.Document对象

?        document文档对象是window对象的一个主要部分,它包含了网页显示的各个元素对象。

–      document.write(str);//输出一行

–      document.writeln(str);//输出一行,并回车

属性:

名称

说明

alinkColor

设置或检索文档中所有活动链接的颜色

bgColor

设置或检索 Document 对象的背景色

body

指定文档正文的开始和结束

linkColor

设置或检索文档链接的颜色

location

包含关于当前 URL 的信息

title

包含文档的标题

url

设置或检索当前文档的 URL

vlinkColor

设置或检索用户访问过的链接的颜色

常用方法:

名称

说明

clear ( )

清除当前文档

close ( )

关闭输出流并强制显示发送的数据

write ("text")

将文本写入文档

本节重点:

?        JavaScript 程序是事件驱动程序

?        onFocus获得焦点事件,表示获得鼠标光标, onBlur失去焦点事件,刚好与之相反

?        浏览器对象是一个分层次的结构,window是顶层根对象

?        打开窗口使用window对象的open( )方法

?        设置定时器,使用window对象的setTimeout( )方法

?        location对象的back( )和forward( )方法等同于前进、后退按钮

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

3 tips to easily customize your Mac computer name, host name and Bonjour name 3 tips to easily customize your Mac computer name, host name and Bonjour name Mar 06, 2024 pm 12:20 PM

Many Mac users tend to keep the default name of their device and may never consider changing it. Many people choose to stick with the name from the initial setup, such as "Johnny's MacBook Air" or simply "iMac." Learning how to change the name of your Mac is a very useful skill, especially when you have multiple devices, as it can help you quickly distinguish and manage them. Next, we will teach you step by step how to change the computer name, host name and Bonjour name (local host name) in macOS system. Why should you change your Mac name? Changing the name of your Mac can not only show your personality, but also help improve the user experience: Personalize your Mac: The default name may not be to your taste, change it to a name you like.

How to implement page jump after PHP form submission How to implement page jump after PHP form submission Aug 12, 2023 am 11:30 AM

How to implement page jump after PHP form submission [Introduction] In web development, form submission is a common functional requirement. After the user fills out the form and clicks the submit button, the form data usually needs to be sent to the server for processing, and the user is redirected to another page after processing. This article will introduce how to use PHP to implement page jump after form submission. [Step 1: HTML Form] First, we need to write a page containing a form in an HTML page so that users can fill in the data that needs to be submitted.

How to search for text across all tabs in Chrome and Edge How to search for text across all tabs in Chrome and Edge Feb 19, 2024 am 11:30 AM

This tutorial shows you how to find specific text or phrases on all open tabs in Chrome or Edge on Windows. Is there a way to do a text search on all open tabs in Chrome? Yes, you can use a free external web extension in Chrome to perform text searches on all open tabs without having to switch tabs manually. Some extensions like TabSearch and Ctrl-FPlus can help you achieve this easily. How to search text across all tabs in Google Chrome? Ctrl-FPlus is a free extension that makes it easy for users to search for a specific word, phrase or text across all tabs of their browser window. This expansion

Try new ringtones and text tones: Experience the latest sound alerts on iPhone in iOS 17 Try new ringtones and text tones: Experience the latest sound alerts on iPhone in iOS 17 Oct 12, 2023 pm 11:41 PM

In iOS 17, Apple has overhauled its entire selection of ringtones and text tones, offering more than 20 new sounds that can be used for calls, text messages, alarms, and more. Here's how to see them. Many new ringtones are longer and sound more modern than older ringtones. They include arpeggio, broken, canopy, cabin, chirp, dawn, departure, dolop, journey, kettle, mercury, galaxy, quad, radial, scavenger, seedling, shelter, sprinkle, steps, story time , tease, tilt, unfold and valley. Reflection remains the default ringtone option. There are also 10+ new text tones available for incoming text messages, voicemails, incoming mail alerts, reminder alerts, and more. To access new ringtones and text tones, first, make sure your iPhone

How to handle user rights management in PHP forms How to handle user rights management in PHP forms Aug 10, 2023 pm 01:06 PM

How to handle user rights management in PHP forms With the continuous development of web applications, user rights management is one of the important functions. User rights management can control users' operating rights in applications and ensure the security and legality of data. In PHP forms, user rights management can be implemented through some simple code. This article will introduce how to handle user rights management in PHP forms and give corresponding code examples. 1. Definition and management of user roles First of all, defining and managing user roles is a matter of user rights.

How to copy text from screenshots on Windows 11 How to copy text from screenshots on Windows 11 Sep 20, 2023 pm 05:57 PM

Download the new Snipping Tool with text actions Although the new Snipping Tool is limited to development and canary versions, if you don’t want to wait, you can install the updated Windows 11 Snipping Tool (version number 11.2308.33.0) now. How this works: 1. Go ahead and open this website (visit) on your Windows PC. 2. Next, select "Product ID" and paste "9MZ95KL8MR0L" into the text field. 3. Switch to the "Quick" ring from the right drop-down menu and click Search. 4. Now, look for this version “2022.2308.33.0” in the search results that appear. 5. Right click on the one with MSIXBUNDLE extension and in context menu

What to do if win7 system cannot open txt text What to do if win7 system cannot open txt text Jul 06, 2023 pm 04:45 PM

What should I do if win7 system cannot open txt text? When we need to edit text files on our computers, the easiest way is to use text tools. However, some users find that their computers cannot open txt text files. So how to solve this problem? Let’s take a look at the detailed tutorial to solve the problem of unable to open txt text in win7 system. Tutorial to solve the problem that win7 system cannot open txt text. 1. Right-click any txt file on the desktop. If there is no txt file, you can right-click to create a new text document, and then select properties, as shown below: 2. In the opened txt properties window , find the change button under the general options, as shown in the figure below: 3. In the pop-up open mode setting

How to use JavaScript to implement real-time verification of the input box content of a form? How to use JavaScript to implement real-time verification of the input box content of a form? Oct 18, 2023 am 08:47 AM

How to use JavaScript to implement real-time verification of the input box content of a form? In many web applications, forms are the most common way of interaction between users and the system. However, the content entered by the user often needs to be validated to ensure the accuracy and completeness of the data. In this article, we will learn how to use JavaScript to implement real-time verification of the content of the form's input box and provide specific code examples. Creating the form First we need to create a simple table in HTML

See all articles