- $()
- $.camelCase v1.0+
- $.contains v1.0+
- $.each
- $.extend
- $.fn
- $.grep v1.0+
- $.inArray v1.0+
- $.isArray
- $.isFunction
- $.isPlainObject v1.0+
- $.isWindow v1.0+
- $.map
- $.parseJSON v1.0+
- $.trim v1.0+
- $.type v1.0+
- add
- addClass
- after
- append
- appendTo
- attr
- before
- children
- clone v1.0+
- closest
- concat
- contents v1.0+
- css
- data
- each
- empty
- eq
- filter
- find
- first
- forEach
- get
- has v1.0+
- hasClass
- height
- hide
- html
- index
- indexOf
- insertAfter
- insertBefore
- is
- last
- map
- next
- not
- offset
- offsetParent v1.0+
- parent
- parents
- pluck
- position v1.0+
- prepend
- prependTo
- prev
- prop v1.0+
- push
- ready
- reduce
- remove
- removeAttr
- removeClass
- replaceWith
- scrollLeft v1.1+
- scrollTop v1.0+
- show
- siblings
- size
- slice
- text
- toggle
- toggleClass
- unwrap
- val
- width
- wrap
- wrapAll
- wrapInner
- Detect module
- $.Event
- $.proxy v1.0+
- bind
- delegate
- die
- event.isDefaultPrevented v1.1+
- event.isImmediatePropagationStopped v1.1+
- event.isPropagationStopped v1.1+
- live
- off
- on
- one
- trigger
- triggerHandler
- unbind
- undelegate
- $.ajax
- $.ajaxJSONP
- $.ajaxSettings
- $.get
- $.getJSON
- $.param
- $.post
- load
- serialize
- serializeArray
- submit
- $.fx
- animate
- Touch events
- 前言
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
$.param
$.param(object, [shallow]) ⇒ string
$.param(array) ⇒ string
序列化一个对象,在Ajax请求中提交的数据使用URL编码的查询字符串表示形式。如果shallow设置为true。嵌套对象不会被序列化,嵌套数组的值不会使用放括号在他们的key上。
如果任何对象的某个属性值是一个函数,而不是一个字符串,该函数将被调用并且返回值后才会被序列化。
此外,还接受 serializeArray格式的数组,其中每个项都有 “name” 和 “value”属性。
$.param({ foo: { one: 1, two: 2 }})
//=> "foo[one]=1&foo[two]=2)"
$.param({ ids: [1,2,3] })
//=> "ids[]=1&ids[]=2&ids[]=3"
$.param({ ids: [1,2,3] }, true)
//=> "ids=1&ids=2&ids=3"
$.param({ foo: 'bar', nested: { will: 'not be ignored' }})
//=> "foo=bar&nested[will]=not+be+ignored"
$.param({ foo: 'bar', nested: { will: 'be ignored' }}, true)
//=> "foo=bar&nested=[object+Object]"
$.param({ id: function(){ return 1 + 2 } })
//=> "id=3"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论