摘要: 1 //Serialize an array of form elements or a set of 2 //key/values into a query string 3 // 将数组形式的表单元素或者哈希表序列化成字符串 4 jQuery.param = function(a, traditional) { 5 var prefix, s = [], 6 add = function(key, value) { 7 // If value is a functi... 阅读全文
posted @ 2013-09-24 21:02 LukeLin 阅读(693) 评论(0) 推荐(0) 编辑
摘要: 1 var rformElems = /^(?:input|select|textarea)$/i, 2 rkeyEvent = /^key/, 3 rmouseEvent = /^(?:mouse|contextmenu)|click/, 4 rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, 5 rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; 6 7 function returnTrue() { 8 ... 阅读全文
posted @ 2013-09-24 20:57 LukeLin 阅读(583) 评论(0) 推荐(0) 编辑