您的位置:
寻梦网首页
>
编程乐园
>
HTML园地
>
HTML实用教程
HTML教程
readonly
表单
属性示例
单行输入域
无法输入的单行输入框
多行输入域
无法输入的多行输入框
梦之都
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>HTML readonly 属性示例</title> </head> <body> <p>
HTML教程
<a href="http://www.dreamdu.com/xhtml/"><strong>readonly</strong></a> <a href="http://www.dreamdu.com/xhtml/">表单</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>