回覆列表
  • 1 # 使用者7004596690954

      程式碼如下:

      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);

      }

      });

  • 中秋節和大豐收的關聯?
  • 怎樣解決C語言程式標頭檔案載入緩慢的問題?