这是我正在处理的功能。我需要获取一个while循环内的选定选项。 每当我尝试通过select id获取所选值时,它只会获得该行剩余部分的最后一个选定值。
请帮帮我。如何获取和存储完整的表数据。
protocol APIWorkerProtocol {
associatedtype DataParser: DataParserProtocol
var dataParser : DataParser { get }
func callAPI(completionHandler: @escaping (APICallResult<DataParser.ResultType>) -> Void)
}
protocol DataParserProtocol {
associatedtype ExpectedRawDataType
associatedtype ResultType
func parseFetchedData(fetchedData: ExpectedRawDataType) -> APICallResult<ResultType>
}
答案 0 :(得分:0)
你没有给你的选择元素赋予名称属性
echo '<td><select id="selteacher" onchange="schedata(this)" >
为此命名为
echo '<td><select id="selteacher" name="selteacher" onchange="schedata(this)" >