This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / HTML 101问题一个如下的select field,我希望能在网页加载时,其默认值为不激活状态。记得好像有个属性可以true, false一下。可忘了,那位DX提醒一下?多谢
<html>
<select name="test">
<option value=test01>test01</option>
<option value=test01>test02</option>
</select>
</html>
-bluej(小J);
2002-4-13
{260}
(#455193@0)
-
做个java script放在document某个函数里,test.value=false。好久没练了,可能不太准确。
-eglington(eglington);
2002-4-13
(#455217@0)
-
没用。就这几行来讲,即使能disable掉什么东西,仍然会提交上去一个值的。
-sinodeer(白丁);
2002-4-13
(#455777@0)
-
<selected name='abc' disabled>
</select>
-zhihaoxx(Dilbert*XP);
2002-4-13
(#455816@0)
-
If use disable attribute, he could not edit the disabled selection, I am not sure if this is what he wants.
-jkmazy(大闸蟹);
2002-4-13
(#455831@0)
-
<select name="test"> <option selected value="">Please Select.</option> <option value=test01>test01</option>....</select>
-jkmazy(大闸蟹);
2002-4-13
(#455822@0)
-
<select name='xx' disable></select>也可以,可就不太好再激活了。
查了下msdn(真是没有面子),发现还是用xx.disabled=true比较的好,将来还可以同XML兼容.
-bluej(小J);
2002-4-13
(#455958@0)
-
no, 在<select> tag中指定disabled attribute的效果和在代码中指定作用是一样的。
-zhihaoxx(Dilbert*XP);
2002-4-13
(#455988@0)