typeΪtext±íʾinputÔªËØΪһ¸öµ¥ÐÐÎı¾¿ò£¬ÊÇinputÔªËصÄĬÈϱíÏÖÐÎʽ¡£µ¥ÐÐÎı¾ÊäÈë¿òÖ§³ÖÏÂÃæµÄÊôÐÔÉèÖá£
A:É趨ԪËØ´óСmaxlengthÊôÐÔÉ趨Óû§Äܹ»ÊäÈëµÄ×Ö·ûµÄ×î´óÊýÄ¿£»sizeÊôÐÔÉ趨ÁËÎı¾¿òÄܹ»ÏÔʾµÄ×Ö·ûÊýÄ¿¡£
¡¡¡¡<form method="post" action="http://www.cnblogs.com/89526cyh/">
¡¡¡¡ <p><label for="name">Name: <input maxlenth="10" id="name" name="name"/></label></p>
¡¡¡¡¡¡¡¡<p><label for="city">City: <input size="10" id="city" name="city"/></label></p>
¡¡¡¡¡¡¡¡<p><label for="fave">Fruit: <input size="10" maxlenth="10" id="fave" name="fave"/></label></p>
¡¡¡¡¡¡¡¡<button type="submit">Submit Vote</button>
¡¡¡¡</form>
B:ÉèÖóõʼֵºÍռλʽÌáʾvalueÊôÐÔ¿ÉÒÔΪÊäÈë¿òÖ¸¶¨Ò»¸öĬÈÏÖµ£»placeholderÊôÐÔ¿ÉÒÔÉèÖÃÒ»¶ÎÌáʾÎÄ×Ö£¬¸æËßÓû§Ó¦¸ÃÊäÈëʲôÀàÐ͵ÄÊý¾Ý
<form method="post" action="http://www.cnblogs.com/89526cyh/">
¡¡¡¡<p><label for="name">Name: <input placeholder="Your name"/></label></p>
¡¡¡¡<p><label for="city">City: <input placeholder="Where you live"/></label></p>
¡¡¡¡<p><label for="fave">Fruit: <input value="Apple"/></label></p>
¡¡¡¡<button type="submit">Submit Vote</button>
</form>
×¢£ºÓÃbuttonÔªËØÖØÖÃ±íµ¥Ê±£¬ä¯ÀÀÆ÷»á»Ö¸´Îı¾¿òÖеÄռλʽÌáʾºÍĬÈÏÖµ¡£
ÔÚchromeÖеÄЧ¹ûÈçÏ£º
C:ʹÓÃÊý¾ÝÁбílistÊôÐÔ¿ÉÒÔÉèÖÃΪһ¸ödatalistÔªËصÄidÊôÐÔÖµ£¬ÕâÑùÓû§¾Í¿ÉÒÔÔÚdatalistÔªËØÖ¸¶¨µÄÁбíÖнøÐÐÑ¡Ôñ¡£datalistÔªËØÊÇHTML5ÖÐÐÂÔöµÄ£¬ÓÃÀ´ÌṩһÅúÖµ£¬°ïÖúÓû§ÊäÈëÐèÒªµÄÊý¾Ý¡£
<form method="post" action="http://www.cnblogs.com/89526cyh/">
¡¡¡¡<p><label for="name">Name: <input placeholder="Your name"/></label></p>
¡¡¡¡<p><label for="city">City: <input placeholder="Where you live"/></label></p>
¡¡¡¡<p><label for="fave">Fruit: <input list="fruitlist"/></label></p>
¡¡¡¡<button type="submit">Submit Vote</button>
</form>
<datalist>
¡¡¡¡<option value="Apples" label="Lovely Apples"/>
¡¡¡¡<option value="Oranges">Refreshing Oranges</option>
¡¡¡¡<option value="Cherries"/>
</datalist>
datalistÔªËØÖеÄÿһ¸öoption¶¼´ú±íÒ»¸öÓû§¿ÉÑ¡ÔñµÄÖµ
ÔÚchromeÖеÄЧ¹ûÈçÏ£º
D:Éú³ÉÖ»¶Á»ò±»½ûÓõÄÎı¾¿ò
readonlyÊôÐÔ±íʾÎı¾¿òÖ»¶Á£¬disabledÊôÐÔ±íʾ²»¿É±à¼£¬ÔÚÍâ¹Û±íÏÖÉÏÓвîÒì¡£
¡¡