Jquery form to get content and bind data, jqueryform

Source: Internet
Author: User

Jquery form to get content and bind data, jqueryform

In the process of daily development, we will inevitably use form forms. We need to obtain the form data and save it to the database, or get a string of json data in the background, to bind data to the form, I wrote a jquery-based formHelp plug-in, which is also easy to use:

Get the data of the form:$ ("# Formid"). serializeJson ();

Bind data to the form:$ ("# Formid"). setForm (json );

Jquery. formHelp. js plugin

/*** Serialize the content in form into json * The same checkbox is spliced with a semicolon * @ param {dom} specified selector * @ param {obj} needs to be spliced in the following json object * @ method serializeJson **/$. fn. serializeJson = function (otherString) {var serializeObj ={}, array = this. serializeArray (); $ (array ). each (function () {if (serializeObj [this. name]) {serializeObj [this. name] + = ';' + this. value;} else {serializeObj [this. name] = this. value ;}}); if (otherString! = Undefined) {var otherArray = otherString. split (';'); $ (otherArray ). each (function () {var otherSplitArray = this. split (':'); serializeObj [otherSplitArray [0] = otherSplitArray [1] ;});} return serializeObj ;}; /*** assign the josn object to the json object * @ param {dom} specified by form * @ param {obj} to be assigned to form * @ method serializeJson **/$. fn. setForm = function (jsonValue) {var obj = this; $. each (jsonValue, function (name, ival) {var $ Oinput = obj. find ("input [name =" + name + "]"); if ($ oinput. attr ("type") = "checkbox") {if (ival! = Null) {var checkboxObj = $ ("[name =" + name + "]"); var checkArray = ival. split (";"); for (var I = 0; I <checkboxObj. length; I ++) {for (var j = 0; j <checkArray. length; j ++) {if (checkboxObj [I]. value = checkArray [j]) {checkboxObj [I]. click () ;}}} else if ($ oinput. attr ("type") = "radio") {$ oinput. each (function () {var radioObj = $ ("[name =" + name + "]"); for (var I = 0; I <radioObj. length; I ++) {if (radioObj [I]. value = ival) {radioObj [I]. click () ;}}) ;}else if ($ oinput. attr ("type") = "textarea") {obj. find ("[name =" + name + "]" 2.16.html (ival);} else {obj. find ("[name =" + name + "]"). val (ival );}})}

Html test code

<! DOCTYPE html> 

The preceding figure shows how jquery obtains the content of the form and binds data to the form. It is helpful for everyone to learn.

Articles you may be interested in:
  • JQUERY code for getting form values
  • JQuery retrieves various width and height (format function) Instances
  • How to Use Jquery to obtain the radio value selected in Form
  • Jquery serialized form json data returned after ajax submission
  • Jquery form data loading example
  • JQuery uses serialize () to submit form data based on ajax ()
  • Use the jQuery form plug-in to process JSON, XML, and HTML data returned by the server

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.