DOM 提交表單和定時器的方法

2022-06-13 04:57:10 字數 2161 閱讀 5028

提交表單:

任何表情通過dom都可以提交表單

document.getelementbyid('f1').submit()

doctype html

>

<

html

lang

="en"

>

<

head

>

<

meta

charset

="utf-8"

>

<

title

>title

title

>

head

>

<

body

>

<

form

id="f1"

action

="">

<

input

type

="text"

/>

<

input

type

="submit"

value

="提交"

/>

<

a onclick

="submitform()"

>提交吧

a>

form

>

<

script

>

function

submitform()

//定時器,一直執行

varobj

=setinterval(

function

() ,

1000

)

//定時器只執行一次

settimeout(

function

() ,

5000

)

script

>

body

>

html

>

其他:var v = confirm('真的要刪除嗎?'); v:true false

console.log(v) 輸出框

alter(123);彈出框

// url和重新整理

location.href  獲取url

location.href ="";重定向,跳轉

location.href =location.href; 頁面重新整理

location.reload()           頁面重新整理

// 定時器

setinterval                 多次定時器

clearinterval               清除多次定時器

settimeout                  單次定時器

cleartimeout                清除單次定時器

doctype html

>

<

html

lang

="en"

>

<

head

>

<

meta

charset

="utf-8"

>

<

title

>title

title

>

head

>

<

body

>

<

div

id="status"

>

div>

<

input

type

="button"

value

="刪除"

onclick

="deleteele()"

/>

<

script

>

function

deleteele()

settimeout(

function

() ,

3000

)

script

>

body

>

html

>

dom操作(定時器)

windows物件 window.open 開啟的位址 開啟的位置 window.opener 上乙個頁面物件 window.close 關閉當前頁面 元素節點建立和追加 建立標籤 document.createelement 標籤名字 文字節點 document.createtextnode 文字...

表單時間和定時器this的指向

1.針對表單的 form 表單 input 輸入框 select 下拉列表 textarea 文字域 type 型別 radio 單選框 checkbox 多選框 password 密碼框 button 普通按鈕 text 文字框標籤 submit 提交按鈕 reset 重置 表單的事件 oncha...

11 7表單事件 定時器

針對表單的 form input select textarea type radio checkbox password button text submit reset 表單的事件 onchange 當表單內容被修改時觸發的事件 onfocus 獲取焦點事件 onblur 失去焦點事件 表單裡的...