给出以下形式:
<form>
<input name="foo" value="bar">
<input name="hello" value="hello world">
</form>
我可以使用$.param( .. )构造序列化表格:
$.param( $('form input') )
=> foo=bar&hello=hello+world
如何使用JavaScript反序列化上面的String并返回哈希值?
例如,
$.magicFunction("foo=bar&hello=hello+world")
=> {'foo' : 'bar', 'hello' : 'hello world'}
参考:jQuery.param( obj )。
肥皂起泡泡
慕后森
相关分类