可能对某些人有用:
(一个允许您使用对象将数据添加到表单的函数,如果有的话,可以覆盖现有输入)[纯 js]
(表单是 dom el,而不是 jquery 对象 [ jqryobj.get(0),如果需要])
function addDataToForm(form, data) {
if(typeof form === 'string') {
if(form[0] === '#') form = form.slice(1);
form = document.getElementById(form);
}
var keys = Object.keys(data);
var name;
var value;
var input;
for (var i = 0; i < keys.length; i++) {
name = keys[i];
// removing the inputs with the name if already exists [overide]
// console.log(form);
Array.prototype.forEach.call(form.elements, function (inpt) {
if(inpt.name === name) {
inpt.parentNode.removeChild(inpt);
}
});
value = data[name];
input = document.createElement('input');
input.setAttribute('name', name);
input.setAttribute('value', value);
input.setAttribute('type', 'hidden');
form.appendChild(input);
}
return form;
}
采用 :
addDataToForm(form, {
'uri': window.location.href,
'kpi_val': 150,
//...
});
你也可以这样使用它
var form = addDataToForm('myFormId', {
'uri': window.location.href,
'kpi_val': 150,
//...
});
如果你也喜欢,你可以添加#(“#myformid”)。