用戶ID:
// 文本框清空灰色提示
function TextOnFocusShow(showId)
{
var showIdTextValue = document.getElementById(showId).value;
var showIdTextDeValue = document.getElementById(showId).defaultValue;// text初始設置
if(showIdTextValue == showIdTextDeValue)
{
document.getElementById(showId).value = "";
document.getElementById(showId).style.color='#000';
}
}
// 文本框為空時增加灰色提示
function TextOnBlurShow(showId)
{
var lDateValue = document.getElementById(showId).value;
var lDateDefaultValue = document.getElementById(showId).defaultValue;
if(lDateValue == '')
{
document.getElementById(showId).value = lDateDefaultValue;
document.getElementById(showId).style.color='#999';
}
}