我对动态生成的字段有疑问。这些字段有不同的类型,它们的类型取决于我的数据库中存储的内容(文本、选择、收音机等)。它们是在我的 PHP 脚本中生成的,并且它们具有相同的名称(ans[]
,它是一个数组)。
<input type='radio' name='ans[]' value='1'>
<input type='radio' name='ans[]' value='2'>
<input type='radio' name='ans[]' value='3'>
<select name='ans[]'>
<option value='desktop'>Desktop</option>
<option value='laptop'>Laptop</option>
<option value='monitor'>Monitor</option>
<option value='printer'>Printer</option>
</select>
<input type='text' name='ans[]' value=''>
我想使用 JQuery 获取每个字段的输入值。可能吗?