function FlightCityObject(name, spell, code, type, airdrome){this.name=name; this.spell=spell; this.code=code; this.type=type; this.airdrome=airdrome;}
var FlightCity = new Array();
FlightCity[0] = new FlightCityObject('12, 'Aksu', 'AKU', '0', '12313');
FlightCity[1] = new FlightCityObject('aa', 'Altay', 'AAT', '0', '456');
FlightCity[2] = new FlightCityObject('rty', 'Ankang', 'AKA', '0', '412');
FlightCity[3] = new FlightCityObject('rt', 'Anqing', 'AQG', '0', '42');如:FlightCity[0]
帮助我通过提交表达的值是AKU给提交上去?也就是说在当前没有提交的时候是显示12,提交后就把AKU这个值给提交上去?
怎么搞?在线等候…………