2013-05-16 94 views
-1

此代碼有什麼問題?我已經在谷歌瀏覽器上試過了,複選框是UNCKECKED,但是在firefox上試用時,它被檢查了,CHECKED BOX的代碼真的要看起來像什麼?選中複選框錯誤

2010-2013 <input type='checkbox' name='actual' value='YES' checked ><br /> 
2000-2009 <input type='checkbox' name='09' value='YES' > <br /> 
1990-1999 <input type='checkbox' name='99' value='YES' > <br /> 
1980-1989 <input type='checkbox' name='89' value='YES' > <br /> 
1970-1979 <input type='checkbox' name='79' value='YES' > <br /> 
... -1969 <input type='checkbox' name='69' value='YES' > <br /> 
+0

在Chrome中查找我。 – brbcoding

+1

它的工作原理:http://jsfiddle.net/GeCe3/ – karthikr

+2

證明或沒有發生 –

回答

1
<input type='checkbox' name='actual' value='YES' checked="checked" > 

嘗試。

+0

這是有效的,但它不應該真正有所作爲** [證明](http://jsfiddle.net/brbcoding/RB5x8/)** – brbcoding

+1

@brbcoding不同之處在於,無論您使用XHTML('checked = 「checked」)或HTML('checked')表示法。這應該與您的文檔類型匹配。 – feeela

+0

不,仍然無法正常工作.. – user2391356