我正在尝试发布输入数据。大多数是在文本框中,但一个字段是单选按钮。我不确定语法是否正确。
var myProps = [];
var type = document.getElementByName().value;
function addProp(id) {
if type = "text" {
var value = encodeURIComponent(document.getElementById(id).value);
}
if type = "radio" {
var value = encodeURIComponent(valueRadioButtonList(id).value);
}
myProps.push(id + "=" + value);
}
addProp('child_name');
addProp('age');
addProp('hometown');
addProp('boy_girl');
addProp('first_name');
addProp('last_name');
addProp('email');
addProp('address1');
addProp('address2');
addProp('city');
addProp('state');
addProp('zip');
addProp('country');
xmlhttp.send(myProps.join("&"));