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:不会自动换行
  • 相关阅读:
    JSON
    类的操作
    轮播图
    定时器的应用
    延时调用
    定时器
    跳表的java实现,转载自网络,仅供自己学习使用
    java实现判断两个二叉树是否相同
    开发小白工作过程中的一些经验记录,仅供自己参看查阅,转载请注明出处
    安卓基础入门二,转载自网络
  • 原文地址:https://www.cnblogs.com/fate-/p/14378930.html
Copyright © 2011-2022 走看看