HTML文本框样式

2023-11-17 108

HTML文本框主要有单行文本框和多行文本框两种类型。单行文本框通常用于输入一些简短的信息,如姓名、邮箱地址、密码等。而多行文本框则用于输入内容较长的信息,比如用户意见、评论、留言等。

一、HTML文本框示例

文本输入框实例:<input type=”text” value=”请输入文本” >

以上文本框代码用到了 css 的伪元素 focus,这是最常见的按钮格式,也可以为它添加一些样式,样式代码如下:

.mytxt {
color:#333;
line-height:normal;
font-family:"Microsoft YaHei",Tahoma,Verdana,SimSun;
font-style:normal;
font-variant:normal;
font-size-adjust:none;
font-stretch:normal;
font-weight:normal;
margin-top:0px;
margin-bottom:0px;
margin-left:0px;
padding-top:4px;
padding-right:4px;
padding-bottom:4px;
padding-left:4px;
font-size:15px;
outline-width:medium;
outline-style:none;
outline-color:invert;
border-top-left-radius:3px;
border-top-right-radius:3px;
border-bottom-left-radius:3px;
border-bottom-right-radius:3px;
text-shadow:0px 1px 2px #fff;
background-attachment:scroll;
background-repeat:repeat-x;
background-position-x:left;
background-position-y:top;
background-size:auto;
background-origin:padding-box;
background-clip:border-box;
background-color:rgb(255,255,255);
margin-right:8px;
border-top-color:#ccc;
border-right-color:#ccc;
border-bottom-color:#ccc;
border-left-color:#ccc;
border-top-width:1px;
border-right-width:1px;
border-bottom-width:1px;
border-left-width:1px;
border-top-style:solid;
border-right-style:solid;
border-bottom-style:solid;
border-left-style:solid;
}

添加了样式以后,需要在文本框中引用此样式。修改文本框代码如下:

<input type="text" value="" class="mytxt" />

好了基本的文本框样式完成了,现在需要再次添加 focus 按钮。首先简单的介绍一下 focus 按钮的作用:就是当我们箭头在文本框中的时候触发此样式。

添加 css 样式如下:

.mytxt:focus {
border: 1px solid #fafafa;
-webkit-box-shadow: 0px 0px 6px #007eff;
-moz-box-shadow: 0px 0px 5px #007eff;
box-shadow: 0px 0px 5px #007eff; 
}

二、单行文本框

HTML文本框样式

本例的源代码如下:

<p>您的姓名: <input type="text" name="text1" size="12" maxlength="20">
您的E_mail: <input type="text" name="text2" size="20" maxlength="24" value="*****@*.*">
输入口令: <input type="password" name="text3" size="8" maxlength="8"> </p>
<p align="center"> 
<input type="submit" name="提交" value="提 交">
<input type="reset" name="重写" value="重 写">

三、检验用户的信息

<input>标记的 onclick 参数可以对用户的输入信息进行检验,我们在“提交”按钮的<input>标记中把onclick 设置为:onclick=”test(form1)”,而“test(form)”则是一个 Javascript 子程序,用来检验文本框的输入内容的,它的源代码如下:

<script language="javascript">
<!--
function test(form){
test1(form);
test2(form);
test3(form)}
function test1(form){
if (form.text1.value=="")
alert("你没有写上你的姓名,请输入姓名!")
}
function test2(form){
if (form.text2.value==""||form.text2.value.indexOf('@',0)==-1)
alert("E_mail地址不正确,请重新输入!")
}
function test3(form){
if (form.text3.value!="12345678")
alert("密码错误,请重新输入!")
}
-->
</script>

四、留言簿

HTML文本框样式

以上留言簿是通过邮件的方式接收用户的信息,无需 CGI 支持。我们用HTML的另一个标记<textarea>来设置一个多行文本框,若是默认的文本框大小不合适,可通过设定cols和rows参数来调整窗口的大小。其它标记参数的设置同例一。本例完成后的源代码如下:

<table width="50%" border="1" bordercolorlight="#000000" bordercolordark="#FFFFFF" bgcolor="#CCFFCC" cellpadding="4" align="left">
<tr><td colspan="2"> <div align="center"><b>留 言 簿</b></div> </td></tr>
<tr><td>姓名: <input type="text" name="textfield" size="8"> </td>
<td>E_mail: <input type="text" name="textfield2" size="10" maxlength="20"> </td>
</tr>
<tr><td colspan="2"> <div align="center">留 言<br> <textarea name="textfield3" cols="30" rows="3"></textarea></div></td></tr>
<tr><td> <div align="right"> <input type="submit" name="Submit" value="提 交"> </div> </td>
<td> <input type="reset" name="Submit2" value="重 写"> </td></tr></table>

五、HTML文本框参考样式

1、输入框景背景透明:

<input style="background:transparent;border:1px solid #ffffff">

2、鼠标划过输入框,输入框背景色变色:

<INPUT value="Type here" NAME="user_pass" TYPE="text" SIZE="29" onmouseover="this.style.borderColor='black';this.style.backgroundColor='plum'"
style="width: 106; height: 21"
onmouseout="this.style.borderColor='black';this.style.backgroundColor='#ffffff'" style="border-width:1px;border-color=black">

3、输入字时输入框边框闪烁(边框为小方型):

<Script Language="JavaScript">
function borderColor(){
if(self['oText'].style.borderColor=='red'){
self['oText'].style.borderColor = 'yellow';
}else{
self['oText'].style.borderColor = 'red';
}
oTime = setTimeout('borderColor()',400);
}
</Script>
<input type="text" id="oText" style="border:5px dotted red;color:red" onfocus="borderColor(this);" onblur="clearTimeout(oTime);">

4、输入字时输入框边框闪烁(边框为虚线):

<style>
#oText{border:1px dotted #ff0000;ryo:expression_r(onfocus=function light (){with(document.all.oText){style.borderColor=(style.borderColor=="#ffee00"?"#ff0000":"#ffee00");timer=setTimeout(light,500);}},onblur=function(){this.style.borderColor="#ff0000";clearTimeout(timer)})};
</style>
<input type="text" id="oText">

5、自动横向廷伸的输入框:

<input type="text" style="huerreson:expression_r(this.width=this.scrollWidth)" value="abcdefghijk">

6、自动向下廷伸的文本框:

<textarea name="content" rows="6" cols="80" onpropertychange="if(this.scrollHeight>80) this.style.posHeight=this.scrollHeight+5">输入几个回车试试</textarea>

7、只有下划线的文本框:

<input style="border:0;border-bottom:1px solid black;background:;">

8、软件序列号式的输入框:

<script for="T" event="onkeyup">
if(value.length==3)document.all[event.srcElement.sourceIndex+1].select();
</script>
<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T7" size="5" maxlength="3">

9、软件序列号式的输入框(完整版):

<script for="Submit" event="onclick">
var sn=new Array();
for(i=0;i<T.length;i++)
sn=T.value;
alert(sn.join("—"));
</script>
<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">
<input type="submit" name="Submit">

六、HTML文本框操作技巧

HTML文本框常见操作技巧如下:

1、html 文本框怎么用 css 变圆角

border-radius 属性可以实现元素的圆角。如下 css 可以实现文本框(单行、多行)的圆角:

input[type=text],textarea{border-radius:3px;border:1px solid #000;}

border-radius 属性是一个简写属性,用于设置四个 border-*-radius 属性。该属性允许为元素添加圆角边框,语法:

border-radius: 1-4 length|% / 1-4 length|%;
  • 按此顺序设置每个 radius 的四个值;
  • 如果省略 bottom-left,则与 top-right 相同
  • 如果省略 bottom-right,则与 top-left 相同;
  • 如果省略 top-right,则与 top-left 相同;
  • 单位一般用px和百分比较多,其他单位也可。

2、HTML中如何设置文本框的大小

边框的大小,可以使用CSS样式控制,如:

<textarea id="txtCon" >content</textarea>
<style type="text/css">
#txtCon{width:100px; height:20px;}
</style>

也可以使用文本框自己的属性,定义文本框的行和列控制大小,如:

<textarea id="txtCon" rows="100" cols="100" >content</textarea>

3、在html中如何实现将本网页中文本框中的值传递到另一个网页的用户名密码框中,并实现登陆

在html网页中,一个按钮,两个文本框,在<SCRIPT language=JavaScript> /SCRIPT>当中如何写代码能够实现将这两个文本框中的值传递到另一个制定地址的网页中的用户名和密码处,并实现登陆?

页面必须是跳转过去的才行。例如另一个页面是page.html那么你跳转的时候 page.html?username=tony&password=123 跳转到这个地址,然后到另一个页面的时候在脚本里面写:

<SCRIPT language=JavaScript>
var url = window.location.href;
var username = url.split("?")[1].split("&")[0].split("=")[1] //这样就获取到用户名了。
var password = url.split("&")[1].split("=")[1];

然后把值赋给密码文本框

document.getElementById("txtpassword").value = password;
document.getElementById("txtusername").value=username;
< /SCRIPT>

然后验证用户名和密码就可以了。

4、HTML中让表单input等文本框为只读不可编辑的方法

有时候,我们希望表单中的文本框是只读的,让用户不能修改其中的信息,如使<input type=”text” name=”input1″ value=”中国”> 的内容,”中国”两个字不可以修改。实现的方式归纳一下,有如下几种。

方法1: onfocus=this.blur() 当鼠标放不上就离开焦点

<input type="text" name="input1" value="中国" onfocus=this.blur()>

方法2:readonly

<input type="text" name="input1" value="中国" readonly> 
<input type="text" name="input1" value="中国" readonly="true">

方法3: disabled

<input type="text" name="input1" value="中国" disabled="true">

完整的例子:

<input name="ly_qq" type="text" tabindex="2" onMouseOver="this.className='input_1'" onMouseOut="this.className='input_2'" value="123456789" disabled="true" readOnly="true" />
  • disabled=”true” 此果文字会变成灰色,不可编辑;
  • readOnly=”true” 文字不会变色,也是不可编辑的。

css屏蔽输入:

<input style="ime-mode: disabled">
  • 广告合作

  • QQ群号:707632017

温馨提示:
1、本网站发布的内容(图片、视频和文字)以原创、转载和分享网络内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。邮箱:2942802716#qq.com(#改为@)。 2、本站原创内容未经允许不得转裁,转载请注明出处“站长百科”和原文地址。
HTML文本框样式
上一篇: HTML音频
HTML文本框样式
下一篇: HTML滚动条样式