When you serialise a form using jQuery.serialize(), the method will serialise the form fields and its values so you can submit to the server. Is there a method/function that would do the same with a javascript object instead of a form?

有帮助吗?

解决方案 2

You're looking for the jQuery.param function.

其他提示

Check out JSON.stringify.

JSON.stringify({x: 5, y: 6}); // '{"x":5,"y":6}' or '{"y":6,"x":5}'
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top