程式碼如下:
Index.html
jQuery實現部分程式碼:
// 獲取使用者名稱
// 獲取焦點
$("#username").focus(function(){
//獲取當前文字框的值
var curValue=$(this).val();
if(curValue==this.defaultValue){
$(this).val("");
}
});
//失去焦點
$("#username").blur(function(){
var curValue=$("#username").val();
if($.trim(curValue)==""){
$(this).val(this.defaultValue);
程式碼如下:
Index.html
jQuery實現部分程式碼:
// 獲取使用者名稱
// 獲取焦點
$("#username").focus(function(){
//獲取當前文字框的值
var curValue=$(this).val();
if(curValue==this.defaultValue){
$(this).val("");
}
});
//失去焦點
$("#username").blur(function(){
var curValue=$("#username").val();
if($.trim(curValue)==""){
$(this).val(this.defaultValue);
}
});