名站网址导航为大家提供关于网站网页设计设计相关的的教程知识。
- 本篇文章具体介绍如下
具体代码如下:
<form id="form1" runat="server">
<div>
<div style="margin-top:100px">
<asp:TextBox ID="TextBox1" runat="server" hintTitle="增加的内容信息标题" hintInfo="控制在100个字数内,标题文本尽量不要太长。"></asp:TextBox></div>
</div>
</form>
页面中的样式
具体代码如下:
<style type="text/css">
.focus
{
border: 1px solid #FC0 !important;
background: url(Admin/Images/focus_bg.jpg) repeat-x !important;
color: #00F !important;
}
/*提示文字样式*/
#hintMsg
{
width: 271px;
position: absolute;
display: none;
}
#hintMsg .hintTop
{
height: 9px;
background: url(Admin/Images/hintbg1.gif) no-repeat;
overflow: hidden;
}
#hintMsg .hintInfo
{
padding: 0 5px;
border-left: 1px solid #000;
border-right: 1px solid #000;
background: #FFFFE1;
line-height: 1.5em;
}
#hintMsg .hintInfo b
{
display: block;
margin-bottom: 6px;
padding-left: 15px;
background: url(Admin/Images/hint.gif) left center no-repeat;
height: 13px;
line-height: 16px;
}
#hintMsg .hintInfo b span
{
display: block;
float: right;
text-indent: -9999px;
background: url(Admin/Images/close.gif) no-repeat;
width: 12px;
height: 12px;
cursor: pointer;
}
#hintMsg .hintFooter
{
height: 22px;
background: url(Admin/Images/hintbg2.gif) no-repeat;
}
</style>
关键JS
具体代码如下:
$(function() {
$(".input,.login_input,.textarea").focus(function() {
$(this).addClass("focus");
}).blur(function() {
$(this).removeClass("focus");
});
//输入框提示,获取拥有hintTitle,hintInfo属性的对象
$("[hintTitle],[hintInfo]").focus(function(event) {
$("*").stop(); //停止所有正在运行的动画
$("#hintMsg").remove(); //先清除,防止重复出错
var hinthtml = "<ul id=\"hintMsg\"><li class=\"hintTop\"></li><li class=\"hintInfo\"><b>" $(this).attr("hintTitle") "</b>" $(this).attr("hintInfo") "</li><li class=\"hintFooter\"></li></ul>"; //设置显示的内容
var offset = $(this).offset(); //取得事件对象的位置
$("body").append(hinthtml); //添加节点
$("#hintMsg").fadeTo(0, 0.85); //对象的透明度
var hintheight = $("#hintMsg").height(); //取得容器高度
$("#hintMsg").css({ "top": offset.top - hintheight "px", "left": offset.left "px" }).fadeIn(500);
}).blur(function(event) {
$("#hintMsg").remove(); //删除UL
});
});
效果图:
好了关于网站网页设计设计相关的这篇文章就给大家介绍到这里不明白的地方给本站留言。声明,本站内容来源于互联网,如果侵犯了你的权益请联系本站删除。,jquery中eq和get的区别与使用方法-jquery