jQueryテキストボックスのデフォルト値の自動クリアと塗りつぶしの実装
3076 ワード
- $(document).ready(function(){
- var i = 0;
- $("input").on("focus blur",function(){
- //this 。 dom , this.value
- //$(this).val(i++);
- // * , is()
- if($(this).is(":focus")){
- // --
- if( $(this).val() == $(this).attr("defaultValue") ){
- $(this).val("");
- }
- } else {
- // , attr() -- ,
- if ($(this).val() == "") {
- $(this).val($(this).attr("defaultValue"));
- }
- }
- });
-
-