<div class="htmlarea"> <textarea id="runcode13399"> <title>onfocus与OnBlur的例子</title> <script type="text/javascript"> //默认值为请输入职位或企业名 function ShowInfo() { var oDiv = document.getElementById("Text1"); //当失焦的时候如果没有填制,还是获取默认值,如果填了值给个背景 if (oDiv.value == "") { oDiv.value = "请输入职位或企业名"; } else { oDiv.style.borderColor = "black"; } } </script> <input id="Text1" type="text" value="请输入职位或企业名" onfocus="this.value='';" onblur="ShowInfo();"> </textarea><br><input onclick="runEx('runcode13399')" type="button" value="运行代码"> <input onclick="doCopy('runcode13399')" type="button" value="复制代码"> <input onclick="doSave(runcode13399)" type="button" value="保存代码">[Ctrl+A 全选 注:<a href="http://www.jb51.net/article/23421.htm" title="查看具体详情" target="_blank">如需引入外部Js需刷新才能执行</a>]</div>