zoukankan      html  css  js  c++  java
  • output和textarea

    输出计算结果:output

    <!DOCTYPE>
    <html>
    <head>
    	<meta charset="utf-8">
    </head>
    <body>
    	<form oninput="x.value=parseInt(a.value)+parseInt(b.value)" method="post">
    		<input type="range" id="a" value="50" min="0" max="100">100 + 
    		<input type="number" id="b" value="50"> =
    		<output name="x" for="a b"> 100</output>
    		
    	</from>
    </body>
    </html>
    

    接收多行文本输入:textarea

    <!DOCTYPE>
    <html>
    <head>
    	<meta charset="utf-8">
    </head>
    <body>
    	<form method="post">
    		<textarea>I am the bone of my sword.
    Steel is my body,and fire is my blood.
    I have created over thousand blades.
    Unknown to death,
    Nor known to life.
    Have with stood pain to create many weapons.
    Yet,those hands will never hold anything.
    So as I pray,unlimited blade works.</textarea>
    	</from>
    </body>
    </html>
    
    • rows和cols属性来调整框的大小,单位是字符
    <!DOCTYPE>
    <html>
    <head>
    	<meta charset="utf-8">
    </head>
    <body>
    	<form method="post">
    		<textarea rows="10" cols="45">I am the bone of my sword.
    Steel is my body,and fire is my blood.
    I have created over thousand blades.
    Unknown to death,
    Nor known to life.
    Have with stood pain to create many weapons.
    Yet,those hands will never hold anything.
    So as I pray,unlimited blade works.
    		</textarea>
    	</from>
    </body>
    </html>
    
    • wrap,有3个值:soft,hard,off

      • soft:会自动换行,但不提交换行符
      • hard:会自动换行,但提交换行符,如何设置了hard,则必须同时指定cols属性
      • off:不会自动换行
  • 相关阅读:
    电脑开机小键盘灯不亮,应该怎么设置?
    关于SqlServer数据库日期函数
    SqlServer数据库几种字段类型对比
    如何查找计算机端口?
    实用的几个小命令
    SqlServer中创建Oracle连接服务器
    局域网内设置打印机
    SqlServer2008数据库自动备份设置
    文件内容替换BAT
    Dockerfile文件与常用指令详解(2) Marathon
  • 原文地址:https://www.cnblogs.com/fate-/p/14378930.html
Copyright © 2011-2022 走看看