<div class="codetitle"> <span><a style="CURSOR: pointer" data="22428" class="copybut" id="copybut22428" onclick="doCopy('code22428')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code22428"> <br><br><br><br> <title></title> <br> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script><br> <style type="text/css"><BR> #divTips{<BR> filter:alpha(opacity=30); /*IE滤镜,透明度50%*/<BR> -moz-opacity:0.3; /*Firefox私有,透明度50%*/<BR> opacity:0.3;/*其他,透明度50%*/<BR> position: absolute;width: 600px; height: 400px;display:none;color:red;z-index:10;padding:10px;<BR> }<BR> </style> <br> <script type="text/javascript"><BR> $(function () {<BR> var $txtNote = $("#txtNote");<BR> var $divTips = $("#divTips");<BR> $txtNote.focus(function () {<BR> //置焦点时隐藏<BR> $divTips.hide();<BR> }).blur(function () {<BR> //离开时, 如果为空则显示,否则隐藏. 然后定位<BR> $divTips.toggle($txtNote.val() == "")<BR> .css({<BR> "left": $txtNote.position().left,<BR> "top" : $txtNote.position().top<BR> });<BR> });<BR> $divTips.click(function () {<BR> $txtNote.focus();<BR> });<BR> $txtNote.blur();<BR> });<BR> </script><br><br><br> 留言板<br><br> <textarea id="txtNote" style="width: 600px; height: 400px;"></textarea><br> <div id="divTips"> <br> 亲,欢迎访问,有什么说的就写下来吧!!<br><br> (在下面的框框中留下您的name, 方便的话请留下您的联系方式)<br> </div> <br><br> <input type="text" value="姓名"> <input type="text" value="手机/QQ/……"><br><br><br> </div>