一、$.extend()與$.fn.extend()區別及實現
區別:實現:
(function($));
}
});
})(jquery);
//jsp頁面使用
$("#input").alertwhileclick();
$.extend(,
max: function(a, b)
});$.min(2, 3);
$.max(4, 5);
$.extend(target,item1,item2):將item1和item2所有引數項合併到target中;
$.extend(true,object1,object2):將object2合併到object1中;
二、from表單序列化json格式
(function($);
var a = this.serializearray();
$.each(a, function()
o[this.name].push(this.value || '');
} else
});
return o;
} });
})(jquery);
function serializeobject(form);
var a = $(form).serializearray();
$.each(a, function()
o[this.name].push(this.value || '');
} else
});return o;
};
三、jquery常用請求方式
1、$.ajax
$.ajax(,
datatype:"json",
success: function(msg)
});//需載入頁面
win.window('refresh',"/storeroom/tohistorytrend.do?roomnameno="+recno+"&equipno="+equipno);
}
Jquery使用筆記
1 分頁工具欄顯示nan 如果在ie9標準模式下,easyui的datagrid顯示的時候有問題,顯示記錄數為nan,把easyui中的demo裡的html加上,也會同樣出現nan的問題。總結,easyui對html5或ie9標準模式不相容。啟用相容模式可以解決 2 easyui禁用combobox...
Jquery使用筆記 一
最近使用jquery比較多,網上搜了很多有用的東西,先記下來!1.動態新增 行 2.下拉框聯動 請選擇 請選擇請選擇 3.表單驗證可以使用jquery.validate,是 4.自動填充,可以使用jquery.autocomplete,是 5.text和textarea的高度自增 input高度固定...
Vim 使用筆記
set hlsearch set nohlsearch 搜尋後清除上次的加亮 nohl nohlsearch 拷貝 很有用的一句話,規定了格式選項,讓它換行不自動空格 set formatoptions tcrqn set fo r set noautoindent 再 shift insert 正...