富贵资源网 Design By www.hznty.com
复制代码 代码如下:
<!doctype html>
<html>
<head>
<title></title>
<script src="/UploadFiles/2021-04-02/jquery.min.js"> <style type="text/css">
#divTips{
filter:alpha(opacity=30); /*IE滤镜,透明度50%*/
-moz-opacity:0.3; /*Firefox私有,透明度50%*/
opacity:0.3;/*其他,透明度50%*/
position: absolute;width: 600px; height: 400px;display:none;color:red;z-index:10;padding:10px;
}
</style>
<script type="text/javascript">
$(function () {
var $txtNote = $("#txtNote");
var $divTips = $("#divTips");
$txtNote.focus(function () {
//置焦点时隐藏
$divTips.hide();
}).blur(function () {
//离开时, 如果为空则显示,否则隐藏. 然后定位
$divTips.toggle($txtNote.val() == "")
.css({
"left": $txtNote.position().left,
"top" : $txtNote.position().top
});
});
$divTips.click(function () {
$txtNote.focus();
});
$txtNote.blur();
});
</script>
</head>
<body>
留言板<br />
<textarea id="txtNote" style="width: 600px; height: 400px;"></textarea>
<div id="divTips">
亲,欢迎访问,有什么说的就写下来吧!!<br />
(在下面的框框中留下您的name, 方便的话请留下您的联系方式)
</div><br />
<input type="text" value="姓名" /> <input type="text" value="手机/QQ/……" />
</body>
</html>
<!doctype html>
<html>
<head>
<title></title>
<script src="/UploadFiles/2021-04-02/jquery.min.js"> <style type="text/css">
#divTips{
filter:alpha(opacity=30); /*IE滤镜,透明度50%*/
-moz-opacity:0.3; /*Firefox私有,透明度50%*/
opacity:0.3;/*其他,透明度50%*/
position: absolute;width: 600px; height: 400px;display:none;color:red;z-index:10;padding:10px;
}
</style>
<script type="text/javascript">
$(function () {
var $txtNote = $("#txtNote");
var $divTips = $("#divTips");
$txtNote.focus(function () {
//置焦点时隐藏
$divTips.hide();
}).blur(function () {
//离开时, 如果为空则显示,否则隐藏. 然后定位
$divTips.toggle($txtNote.val() == "")
.css({
"left": $txtNote.position().left,
"top" : $txtNote.position().top
});
});
$divTips.click(function () {
$txtNote.focus();
});
$txtNote.blur();
});
</script>
</head>
<body>
留言板<br />
<textarea id="txtNote" style="width: 600px; height: 400px;"></textarea>
<div id="divTips">
亲,欢迎访问,有什么说的就写下来吧!!<br />
(在下面的框框中留下您的name, 方便的话请留下您的联系方式)
</div><br />
<input type="text" value="姓名" /> <input type="text" value="手机/QQ/……" />
</body>
</html>
富贵资源网 Design By www.hznty.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
富贵资源网 Design By www.hznty.com
暂无评论...