欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

通過構(gòu)造AJAX參數(shù)實現(xiàn)表單元素JSON相互轉(zhuǎn)換

 更新時間:2016年05月04日 10:11:53   作者:jerrylsxu  
這篇文章主要介紹了通過構(gòu)造AJAX參數(shù)實現(xiàn)表單元素JSON相互轉(zhuǎn)換 的相關(guān)介紹,需要的朋友可以參考下

ajax提交服務(wù)器數(shù)據(jù), 整理一下轉(zhuǎn)換方法。

HTML:

<form id="fm" name="fm" action="">
<input name="UserName" type="text" value="UserName1"/>
</form>
<input name="UserId" id="UserId" type="text" value="UserId1"/> 

1.表單元素轉(zhuǎn)QueryString

var q = $('#fm,#UserId').serialize(); //q = UserName=UserName1&UserId=UserId1 

2.字符串, JSON 互相轉(zhuǎn)換

var obj = jQuery.parseJSON('{"name":"John"}');
alert( obj.name === "John" ); 

可以利用jquery-json插件實現(xiàn)轉(zhuǎn)換,直接引用示例

var thing = {plugin: 'jquery-json', version: 2.3};
var encoded = $.toJSON( thing );
// '{"plugin":"jquery-json","version":2.3}'
var name = $.evalJSON( encoded ).plugin;
// "jquery-json"
var version = $.evalJSON(encoded).version;
// 2.3 

3.表單,元素轉(zhuǎn)Name,Value數(shù)組

var arr = $("#fm,#UserId").serializeArray();
/*[ 
{name: 'UserName', value: '"UserName"1'}, 
{name: 'UserId', value: 'UserId'}
] */ 

4. 表單元素轉(zhuǎn)JSON

$.fn.serializeObject = function()
{
var o = {};
var a = this.serializeArray();
$.each(a, function() {
if (o[this.name] !== undefined) {
if (!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(this.value || '');
} else {
o[this.name] = this.value || '';
}
});
return o;
};
var obj = $('form').serializeObject();
/*obj: Object
UserId: "UserId1"
UserName: "UserName1"
__proto__: Object*/ 

5. JSON2FORM

$.getJSON('url_to_file', function(data) {
for (var i in data) {
$('input[name="'+i+'"]').val(data[i]);
}
}

Google過程中發(fā)現(xiàn)一個更強(qiáng)大的插件 http://code.google.com/p/jquery-load-json/

data = {
"Name":"Emkay Entertainments",
"Address":"Nobel House, Regent Centre",
"Contact":"Phone"
} 
$('div#data').loadJSON(data);
<div id="data">
<h1 id="Name">Emkay Entertainments</h1>
<label for="Address">Address:</label>
<span id="Address">Nobel House, Regent Centre</span> 
<label for="Contact">Contact by:</label>
<span id="Contact">Phone</span>
</div> 

相關(guān)文章

最新評論