码迷,mamicode.com
首页 > 其他好文 > 详细

将josn对象赋值给form

时间:2019-05-29 15:08:55      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:tostring   htm   for   json   checked   func   form   val   checkbox   

记录一下自己用过的方法
$.fn.setForm = function(jsonValue) {
var obj = this;
$.each(jsonValue, function(name, ival) {
var $oinput = obj.find("input[name=" + name + "]");
var $oselect = obj.find("select[name=" + name + "]")
if ($oinput.attr("type") == "radio" || $oinput.attr("type") == "checkbox") {
$oinput.each(function() {
//console.log(Object.prototype.toString.apply(ival),‘++++++++++++++++‘)
if (Object.prototype.toString.apply(ival) == ‘[object Array]‘) { //是复选框,并且是数组

for (var i = 0; i < ival.length; i++) {
if ($(this).val() == ival[i]){ //或者文本相等


$(this).prop("checked", true);
}
}
}else {

if ($(this).val() == ival){

$(this).prop("checked", true);
}
}
});
}else if($oselect.attr("name") !== undefined){
$oselect.each(function(i) {

for (j = 0; j < $oselect[i].options.length; j++) {
if ($oselect[i].options[j].text == ival) { // 选项值与变量相同

$oselect[i].options[j].selected =true;

}
}

})

}else if ($oinput.attr("type") == "textarea") {
obj.find("[name=" + name + "]").html(ival);
} else {
obj.find("[name=" + name + "]").val(ival);
}
})
};





将josn对象赋值给form

标签:tostring   htm   for   json   checked   func   form   val   checkbox   

原文地址:https://www.cnblogs.com/zhangqian1/p/10943565.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!