<div class="htmlarea"> <textarea id="runcode57592"> <title></title> <style type="text/css"> *{ margin:0px;padding:0px;font-size:12px; } input{ width:100px;height:20px;border:1px solid #ccc; } </style> <div id="tips" style="position:absolute;border:1px solid #ccc;padding:0px 3px;color:#f00;display:none;height:20px;line-height:20px;background:#fcfcfc"> </div> <input type="text" id="username" onfocus="tips('username','姓名长度最多16个字符')" onblur="outtips()"> 이름: <input type="password" id="password" onfocus="tips('password','密码长度必须在3-18位之间')" onblur="outtips()"> 비밀번호: </textarea> <br><input onclick="runEx('runcode57592')" type="button" value="运行代码"><input onclick="doCopy('runcode57592')" type="button" value="复制代码"> <input onclick="doSave(runcode57592)" type="button" value="保存代码"> <a href="http://www.jb51.net/article/23421.htm" title="查看具体详情" target="_blank">[Ctrl A 모두 선택 참고: </a>외부 J를 도입해야 하는 경우 실행하려면 새로 고쳐야 합니다. </div>]<br><br> 비교적 간단하고 스스로 할 수 있습니다. 심심해서 작성했고, 오랫동안 코드를 작성하지 않았습니다. . . . <script language="javascript"> function tips(id,str){ var l=document.getElementById(id).offsetLeft+120; var t=document.getElementById(id).offsetTop; document.getElementById("tips").innerHTML="提示:"+str; document.getElementById("tips").style.left=l+"px"; document.getElementById("tips").style.top=t+"px"; document.getElementById("tips").style.display=""; } function outtips(){ document.getElementById("tips").style.display='none'; } </script>