表单类各种类型(文本框)失去焦点效果jquery代码
时间:2021-06-04 07:52:54|栏目:jquery|点击: 次
复制代码 代码如下:
<SPAN style="FONT-SIZE: 18px">表单类失去焦点的效果</SPAN>
复制代码 代码如下:
<script type="text/javascript">
$(function(){
$(":input").focus(function(){ //此处可获取各种表单如(:text/:button)
$(this).addClass("focusa");
if ($(this).val()==this.defaultValue){
$(this).val("");
}
}).blur(function(){
$(this).removeClass("focusa");
if ($(this).val()==""){
$(this).val(this.defaultValue);
}
});
});
</script>
各种表单的类型:
复制代码 代码如下:
<input type="text" /> 文本框
<input type="password" /> 密码框
<input type="submit" /> 提交按钮
<input type="reset" /> 重置按钮
<input type="radio" /> 单选框
<input type="checkbox" /> 复选框
<input type="button" /> 普通按钮
<input type="file" /> 文件选择控件
<input type="hidden" /> 隐藏框
<input type="image" /> 图片按钮
栏 目:jquery
下一篇:浅谈jQuery中Ajax事件beforesend及各参数含义
本文标题:表单类各种类型(文本框)失去焦点效果jquery代码
本文地址:http://www.codeinn.net/misctech/134970.html