表单选择器的小结

Original 2018-11-14 19:34:51 184
abstract:1、所有激活的ipout元素 enabled 2、所有禁用的input元素 disabled3、所有被选中的input元素,针对select元素  selected4、所有被选取的input元素  checked<select><option>AA</option><option selected>BB</opti
1、所有激活的ipout元素 enabled 
2、所有禁用的input元素 disabled
3、所有被选中的input元素,针对select元素  selected
4、所有被选取的input元素  checked
<select>
<option>AA</option>
<option selected>BB</option>
<option>CC</option>
</select>


Correcting teacher:韦小宝Correction time:2018-11-15 09:11:10
Teacher's summary:代码的完整性不够!下次记得写完整并且缺少总结!!下次记得把这两点都补充完整!!!

Release Notes

Popular Entries