HTML教程
readonly
表单
属性示例
单行输入域
无法输入的单行输入框
多行输入域
无法输入的多行输入框
梦之都
<head>
<title>HTML readonly 属性示例 -- HTML教程,XHTML教程</title> </head> <body> <p><a href="http://www.dreamdu.com/xhtml/">HTML教程</a> <a href="http://www.dreamdu.com/xhtml/attribute_readonly/"><strong>readonly</strong></a> <a href="http://www.dreamdu.com/xhtml/form/">表单</a>属性示例</p> <form id="dreamduform" action="http://www.dreamdu.com/dreamdu.php" method="post"> <fieldset> <legend>单行输入域</legend> <label for="notinput">无法输入的单行输入框</label> <input id="notinput" name="notinput" type="text" value="梦之都" readonly="readonly" /> </fieldset> <fieldset> <legend>多行输入域</legend> <label for="notinput">无法输入的多行输入框</label> <textarea cols="50" rows="10" id="textarea" name="textarea" readonly="readonly">梦之都</textarea> </fieldset> </form> </body> </html>