我正在从服务返回的数组中生成动态单选按钮。返回的每个项目都包含地址数据。我知道如何从数据中获取值,但是如何从所选项目中获取所有值?这是我到目前为止所拥有的:
function showAddresses(item) {
window.addNo2 = item.streetno;
window.addStr2 = item.streetname;
window.addCity2 = item.city;
window.addSt2 = item.state;
window.addZip2 = item.zip;
window.latLong2 = item.latlng;
$('#multiAdds').show();
$('#results').append('<p><input type="radio" name="multiAdds" class="radioButton" onclick="getChecked()" value="' + latLong2 + '">' + addNo2 + ' ' + addStr2 + </p>');
}
function getChecked(){
var latLong2 = $("input[name=multiAdds]:radio:checked").val();
getJurisdictionMulti(latLong2, addNo2, addStr2, addCity2, addSt2, addZip2);
}
我基本上需要能够从选定的单选按钮中获取所有关联的地址数据,并使用它们创建单独的变量,以便能够传递到我的 getJurisdictionMulti() 函数中。