Checkbox的checked屬性問題_第1頁
Checkbox的checked屬性問題_第2頁
Checkbox的checked屬性問題_第3頁
Checkbox的checked屬性問題_第4頁
Checkbox的checked屬性問題_第5頁
已閱讀5頁,還剩7頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

1、Checkbox的checked屬性問題Checkbox的checked屬性問題轉(zhuǎn)自:32.html前幾天開發(fā)中用Javascript腳本創(chuàng)建Checkbox時,發(fā)現(xiàn)設(shè)置checked屬性有問題,后來測試得到設(shè)置checked屬性在IE,Firefox,Opera中存在差異。我們先來看一下網(wǎng)上搜索到的例子。1 、InternetExplorer6andthecheckedcheckbox/article/90/ie-6-and-the-checked-checkboxYoudinamicallycreateacheckboxandthenputi

2、tsstatetochecked.Then,youappendyournewcheckboxtoitsparent.Infirefoxthere’snothingwrongwiththat.ButInternetExplorerDOESNOTcheckthebox.Why?Well,FIRSTyouhavetoshowthecheckboxandTHENcheckit.So:Html代碼chk=document.createElement(INPUT)chk.type=checkboxchk.checked=truedocument.getElementById(container

3、).appendChild(chk)chk=document.createElement(INPUT)chk.type=checkboxchk.checked=truedocument.getElementById(container).appendChild(chk)DoesnotworkinIE.Youhavetorewritethisas:Html代碼chk=document.createElement(INPUT)chk.type=checkboxdocument.getElementById(container).appendChild(chk)chk.checked=truechk

4、=document.createElement(INPUT)chk.type=checkboxdocument.getElementById(container).appendChild(chk)chk.checked=true從這里我們可以看出在IE中,checked屬性需要在添加到頁面以后設(shè)置才有效,而FF,Opera都不存在此現(xiàn)象。2 、firefox和ie下面的初始化checkbox42.html這篇日志得出同樣的結(jié)果。(申明:firefox下是支持cb.checked=true這樣的寫法,checked是一個可讀寫的屬性。至少我的環(huán)境是正常的。)3 、使用CheckBox的indet

5、erminate屬性的問題5/1597399.aspx這篇日志提到了CheckBox的indeterminate屬性的問題,注意:CheckBox的indeterminate是一個獨立的屬性,和CheckBox的checked、status的取值無關(guān),也就是說它只會影響CheckBox的外觀顯示,我們?nèi)匀豢梢哉5氖褂媚_本讀取checked和status的值。4 、DOM&checkbox(checkedstatus)帖子中提到Checkbox在IE6和IE7下的多種情況。(此帖子中的代碼本人沒有測試過。)最后看看本人測試結(jié)果及結(jié)論:Html代碼1<!DOCTYPEhtmlPUB

6、LIC-/W3C/DTDXHTML1.0Transitional/EN/TR/xhtml1/DTD/xhtml1-transitional.dtd>2 <htmlxmlns=/1999/xhtml>3 <head>4 <title>CheckBoxExample</title>5 <metaname=generatorcontent=editplus/>6 <metaname=authorcontent=Net205/>7 <metaname=ke

7、ywordscontent=Net205,冷風(fēng)工作室/>8 <metaname=descriptioncontent=CheckBoxExampleinIE、FF、OP/>9 <metahttp-equiv=Cache-Controlcontent=no-cache/>10 </head>1112 <body>13 <%14 Response.Buffer=true15 Response.Expires=016 Response.ExpiresAbsolute=Now()-117 Response.CacheControl=no-ca

8、che18 Response.AddHeaderPragma,No-Cache1920 ForEacheInRequest.Form21Response.Writee&:&Request.Form(e)&<br/>22Next2324%>25<formid=frmname=frmmethod=postaction=?>26<inputtype=checkboxid=chkTest1name=chkTest1value=1/>27<script>28/*youcanusesetAttributetosetthevalu

9、eofattribute,likethis:29chk.setAttribute(name,chkTest2),chk.setAttribute(checked,true)*/30varchk1=document.createElement(input);31chk1.id=chkTest2;32=chkTest2;33chk1.type=checkbox;34chk1.value=1;35/chk1.defaultChecked=true;36/chk1.indeterminate=true;37document.getElementById(frm).appendChil

10、d(chk1);38chk1.checked=true;39</script>40<inputtype=submit/>41</form>42</body>43</html>1<!DOCTYPEhtmlPUBLIC-/W3C/DTDXHTML1.0Transitional/EN/TR/xhtml1/DTD/xhtml1-transitional.dtd>2<htmlxmlns=/1999/xhtml>3 <head>4 <titl

11、e>CheckBoxExample</title>5 <metaname=generatorcontent=editplus/>6 <metaname=authorcontent=Net205/>7 <metaname=keywordscontent=Net205,冷風(fēng)工作室/>8 <metaname=descriptioncontent=CheckBoxExampleinIE、FF、OP/>9 <metahttp-equiv=Cache-Controlcontent=no-cache/>10 </head&g

12、t;1112 <body>13 <%14 Response.Buffer=true15 Response.Expires=016 Response.ExpiresAbsolute=Now()-117 Response.CacheControl=no-cache18 Response.AddHeaderPragma,No-Cache1920 ForEacheInRequest.Form21 Response.Writee&:&Request.Form(e)&<br/>22 Next2324%>25<formid=frmname=f

13、rmmethod=postaction=?>26<inputtype=checkboxid=chkTest1name=chkTest1value=1/>27<script>28 /*youcanusesetAttributetosetthevalueofattribute,likethis:29 chk.setAttribute(name,chkTest2),chk.setAttribute(checked,true)*/30 varchk1=document.createElement(input);31 chk1.id=chkTest2;32 chk1.nam

14、e=chkTest2;33 chk1.type=checkbox;34 chk1.value=1;35 /chk1.defaultChecked=true;36 /chk1.indeterminate=true;37document.getElementById(frm).appendChild(chk1);38 chk1.checked=true;39 </script>40 <inputtype=submit/>41 </form>42 </body>43 </html>結(jié)論:1 、當用Javascript腳本創(chuàng)建并添加CheckBox復(fù)選框時,對于IE,必須在添加(如:appendChild)后設(shè)置checked值才有效,F(xiàn)F、OP都有效,無此現(xiàn)象。2 、defaultChecked直接寫到屬性里,IE、FF、OP都不支持,當用Javascript腳本設(shè)置為true時,都支持(無順序關(guān)系),并在服務(wù)器端可以取到值。3 、indeterminate當屬性添加時IE、FF、OP都無效,只有當用Javascript腳本設(shè)置時,IE才有效,并在服務(wù)器端取不到值,只會影響CheckBox

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論