在郵箱中常見的,反選,全選,不選。

2022-05-06 08:21:08 字數 2419 閱讀 1436

doctype html

>

<

html

>

<

head

>

<

meta

charset

="utf-8"

/>

<

title

>

title

>

<

script

>

window.onload

=function

() };

obtn2.onclick

=function

() };

obtn3.onclick

=function

() else}};

}script

>

head

>

<

body

>

<

input

id="btn1"

type

="button"

value

="全選"

/>

<

input

id="btn2"

type

="button"

value

="不選"

/>

<

input

id="btn3"

type

="button"

value

="反 選"

/>

<

div

id="div1"

>

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

<

input

type

="checkbox"

/><

br />

div>

body

>

html

>

這個作業不是很難,但是找小細節的問題費了很多事情,第乙個是修改了命名,導致命名不統一,效果出不來。第二,getelementsbytabname這個單詞寫錯,當中有個s忘記了。第三,在for迴圈中後面緊跟的條件有順序要求分別是初始化,條件,自增或者自減。

漫漫修仙路,悠悠努力時。

全選 不選和反選

今天我們來學習一下如何實現全選 不選和反選,首先我們來看一張收件箱的。收件箱如果只是簡單的刪除幾封郵件,選中刪除就可以了,但是如果郵箱裡堆滿了郵件,乙個乙個的選中再刪除,太過於浪費精力。今天你學會了如何實現全選 不選和反選,就可以不花精力的刪掉過期的郵件。接下來我們看效果圖。沒被選中之前 全選 不選...

JS實現全選 不選 反選

思路 1 獲取元素。2 用for迴圈歷遍陣列,把checkbox的checked設定為true即實現全選,把checkbox的checked設定為false即實現不選。3 通過if判斷,如果checked為true選中狀態的,就把checked設為false不選狀態,如果checked為false不...

js實現checkbox全選 不選與反選

一 思路 1.獲取元素 2.給全選 不選 反選新增點選事件 3.用for迴圈checkbox 4.把checkbox的checked設定為true即實現全選 5.把checkbox的checked設定為false即實現不選 6.通過if判斷,如果checked為true選中狀態的,就把checked...