<HTML> 
<HEAD> 
<TITLE>   New   Document   </TITLE> 
<META   NAME= "Generator "   CONTENT= "EditPlus "> 
<META   NAME= "Author "   CONTENT= " "> 
<META   NAME= "Keywords "   CONTENT= " "> 
<META   NAME= "Description "   CONTENT= " "> 
</HEAD> <BODY> 
<table border= "1"> 
<tr><td width="200" height="40" onclick="show(this);"> 
<input type="text" value="default value" style="border:0px;"
    onfocus="show(this);"
    onblur="hidden(this);"
    onmouseout="hidden(this);">
</td></tr> 
<tr><td width="200" height="40" onclick= "show(this);"> 
<input type="password" value="default value" style="border:0px;"
    onfocus="show(this);"
    onblur="hidden(this);"
    onmouseout="hidden(this);">
</td></tr> 
<tr><td width="200" height="40" onclick="show(this);"> 
<textarea value="default value" style="border:0px;width:100%;height:100%;"
    onfocus="show(this);"
    onblur="hidden(this);"
    onmouseout="hidden(this);">
这是一个textarea
fdsa
fdsaaf
defaulta
fdsada
fdsa    
</textarea> 
</td></tr> 
</table> <script>
function show(obj){ 
    obj.style.border='1px solid #cccccc';
    obj.style.overflow='auto';
} function hidden(obj){ 
    obj.style.border='0px';
    obj.style.overflow='hidden';
    obj.blur();} 
</script> </BODY> 
</HTML>