>  기사  >  웹 프론트엔드  >  新手,新写的INPUT函数的VALUE值显示不了。_html/css_WEB-ITnose

新手,新写的INPUT函数的VALUE值显示不了。_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-21 08:47:552218검색

HTML的代码是是这个:
   


     Just type in your name (and click the Submit) to enter the contest:

 Firstname: 

 Lastname:

 

 

 

 

 

 

 


 
但是网页显示是这样:


请问是为什么呢??


回复讨论(解决方案)

<p>Just type in your name (and click the Submit) to enter the contest:<br />Firstname: <input type="text" name="firstname" value=""/><br />Lastname:<input type="text" name="lastnmae"value=""/><br /><input type="Submit" /><br/>hot<input type="radio" name="hotornot" value="hot" /><br/>not<input type="radio" name="hotornot" value="not" /><br/>salt<input type="checkbox" name="spice" value="salt" /><br/>pepper<input type="checkbox" name="spice" value="pepper" /><br/>garlic<input type="checkbox" name="spice" value="garlic" /><br/></p>

checkbox 复选框的 value 属性值不会显示在用户界面中,是传后台的,你想显示 
外 前后加值

value属性内容是传递值时使用的,不能直接在界面中显示

 <input type="radio" name="hotornot" value="hot" >hot</input>

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.