这篇文章主要为大家详细介绍了jQuery 使用label实现点击表单input,提示文字消失的示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
<div class="row">
<label class="hint" for="textbox_name">
<span>User name</span>
</label>
<input class="textbox" type="text" id="textbox_name" />
</div>
注意这里的label有一个for的属性,这个是必需的,它可以确保点击label的时候,让input获得焦点,因为之后我们要让label定位到input的上方(label与input重叠)。接下来添加样式:
/**
* 点击表单input,提示文字消失
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
.row {
position: relative;
padding: 1px;
}
.row .hint{
opacity: 0.4;
filter:alpha(opacity=40);
padding: 4px 0 0 6px;
position: absolute;
}
.row .textbox {
height: 18px;
outline: none;
border: 1px solid Gray;
padding: 4px 3px 2px;
-webkit-border-radius: 2px
-moz-border-radius: 2px;
}
.focus {
padding: 0;
}
.focus .textbox {
border: 2px solid #7B8AAC;
}
这样label就和input重叠起来了。
/**
* 点击表单input,提示文字消失
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
$(function() {
$(".textbox").focus(function() {
var self = $(this);
self.closest(".row").addClass("focus");
self.prev().css("display", "none");
}).blur(function() {
var self = $(this);
self.closest(".row").removeClass("focus");
if(self.val() == "") {
self.prev().css("display", "inline");
}
});
});
为了方便,这里用到了jQuery。
本文来自:http://www.q1010.com/180/1731-0.html
注:关于jQuery 使用label实现点击表单input,提示文字消失的示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:input
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。