jquery控制文本框赋值取值_jquery清空文本框内容

发布时间:2020-06-24编辑:脚本学堂
本文介绍了jquery控制文本框赋值与取值,清空文本框内容,文本框焦点获取与失去的方法与实例代码,需要的朋友参考下。

例1,文本框赋值与取值,文本框焦点事件。
 

复制代码 代码示例:

$("#Text1").val("公交"); //赋值 
$("#Text1").val(""); //清空 
var mbt = $("#Text1").val();  // 获取值 
$(”#Text1”)[0].focus()// 文本框获得焦点 

$("#Text1").val("公交"); //赋值
$("#Text1").val(""); //清空
var mbt = $("#Text1").val();  // 获取值
$(”#Text1”)[0].focus()// 文本框获得焦点

//当点击按钮“添加空格”时,会在原来的内容的基础上加上空格,此时文本框已失去焦点了,需要通过focus()函数使其,在插入空格的位置上再次获得光标。 
$("#insert_blank").click(function() 

var temp=$("#blank_qustion_content").val(); 
temp=temp+"______"; 
$("#blank_qustion_content").val(temp); 
//插入完空格的时候,文本框再次获得焦点 
$("#blank_qustion_content").focus(); 
}) 

完整例子:
 

复制代码 代码示例:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="文本框失去和获取焦点变色.aspx.cs" Inherits="文本框失去和获取焦点变色" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>文本框焦点事件 - www.jb200.com</title>
<style type="text/css">
  body
  {
font: normal 12px/17px Arial;
  }
  div
  {
padding: 2px;
  }
  input, textarea
  {
width: 12em;
border: 1px solid #888;
  }
  .focus
  {
border: 1px solid #f00;
background: #fcc;
  }
</style>
<script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
<script type="text/javascript">
  $(function () {
$("input").focus(function () {
$(this).addClass("focus");
}).blur(function () {
$(this).removeClass("focus");
});
  });
</script>
</head>
<body>
<form id="form1" runat="server">
<fieldset>
  <legend>个人基本信息</legend>
  <div>
<label for="username">
名称:</label>
<input id="username" type="text" />
  </div>
  <div>
<label for="pass">
密码:</label>
<input id="pass" type="password" />
  </div>
  <div>
<label for="msg">
详细信息:</label>
<textarea id="msg" rows="2" cols="20"></textarea>
  </div>
</fieldset>
</form>
</body>
</html>

jquery文本框中的事件应用
 

复制代码 代码示例:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<title>jquery文本框中的事件应用_www.yuju100.com</title> 
<style type="text/css"> 
body{ font-size:13px;} 
/*元素初始化样式*/ 
.divInit{ width:390px; height:55px; line-height:55px; padding-left:20px;} 
.txtInit{ border:solid 1px #666; padding:3px; background-image:url('Images/bg_email_input.gif');} 
.spnInit{ width:179px; height:40px; line-height:40px; float:right; margin-top:8px; padding-left:10px; background-repeat:no-repeat;} 
/*元素丢失焦点样式*/ 
.divBlur{ background-color:#FEEEC2;} 
.txtBlur{ border:solid 1px #666; padding:3px; background-image:url('Images/bg_email_input2.gif');} 
.spnBlur{ background-image:url('Images/bg_email_wrong.gif');} 
.divFocu{ background-color:#EDFFD5;} /*div获取焦点样式*/ 
.spnSucc{ background-image:url('Images/pic_Email_ok.gif'); margin-top:20px;} /*验证成功时span样式*/ 
</style> 
<script src="Scripts/jquery-1.4.1-vsdoc.js" type="text/javascript"></script> 
<script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script> 
<script type="text/javascript"> 
  $(function () { 
$("#txtEmail").trigger("focus"); //默认时文本框获得焦点 
$("#txtEmail").focus(function () { //文本框获取焦点事件 
$(this).removeClass("txtBlur").addClass("txtInit"); 
$("#email").removeClass("divBlur").addClass("divFocu"); 
$("#spnTip").removeClass("spnBlur").removeClass("spnSucc").html("请输入您常用邮箱地址!"); 
}); 
$("#txtEmail").blur(function () { //文本框丢失焦点事件 
var vTxt = $("#txtEmail").val(); 
if (vTxt.length == 0) { //文本框中是否输入了邮箱 
  $(this).removeClass("txtInit").addClass("txtBlur"); 
  $("# email").removeClass("divFocu").addClass("divBlur"); 
  $("#spnTip").addClass("spnBlur").html("邮箱地址不能为空!"); 

else { //检测邮箱格式是否正确 
  if (!chkEmail(vTxt)) { //如果不正确 
$(this).removeClass("txtInit").addClass("txtBlur"); 
$("#email").removeClass("divFocu").addClass("divBlur"); 
$("#spnTip").addClass("spnBlur").html("邮箱格式不正确!"); 
  } 
  else { //如果正确 
$(this).removeClass("txtBlur").addClass("txtInit"); 
$("#email").removeClass("divFocu"); 
$("#spnTip").removeClass("spnBlur").addClass("spnSucc").html(""); 
  } 

}); 
/*验证邮箱格式是否正确 参数strEmail,需要验证的邮箱*/ 
function chkEmail(strEmail) { 
var vChk = /^w+([-+.]w+)*@w+([-.]w+)*.w+([-.]w+)*$/; 
if (!vChk.test(strEmail)) { 
  return false; 

else { 
  return true; 


}); 
</script> 
</head> 
<body> 
<form id="form1" action="#"> 
<div id="email" class="divInit">邮箱: 
<span id="spnTip" class="spnInit"></span> 
<input type="text" id="txtEmail" class="txtInit" /> 
</div> 
</form> 
</body> 
</html>