JS文本框默认值处理

 

代码
<script type="text/javascript">
       
function txtFocus(el) {
           
if (el.defaultValue == el.value) { el.value = ''; el.style.color = '#000'; }
       }

       
function txtBlur(el) {
           
if (el.value == '') { el.value = el.defaultValue; el.style.color = '#666'; }
       }
    
</script>

<asp:TextBox ID="txtBookPerson" runat="server" CssClass="text2" style="color:#666;" onfocus="txtFocus(this)" onblur="txtBlur(this)" value='请输入预定人' ></asp:TextBox>

 

 

posted @ 2011-01-19 10:14  唔愛吃蘋果  阅读(2366)  评论(0编辑  收藏  举报