gpt4 book ai didi

php - 如何更正输入类型为 radio 数组的本地存储上的写入

转载 作者:行者123 更新时间:2023-11-30 23:05:18 24 4
gpt4 key购买 nike

我的代码

<form method="post" name="frm">
Question 1
<input type="radio" name="answer[0]" value="a"> A
<input type="radio" name="answer[0]" value="b"> B
<input type="radio" name="answer[0]" value="c"> C
<input type="radio" name="answer[0]" value="d"> D
Question 2
<input type="radio" name="answer[1]" value="a"> A
<input type="radio" name="answer[1]" value="b"> B
<input type="radio" name="answer[1]" value="c"> C
<input type="radio" name="answer[1]" value="d"> D
</form>

为什么我使用本地存储?,因为这实际上是一个表单分页。

当我尝试这个的时候

localStorage.setItem('Text',$('input[name="answer[]"]:checked').val());

它说未定义。

那么,当输入类型为单选数组时,如何改写呢?

感谢您的帮助。

最佳答案

尝试

$('input[name*="answer"]:checked').val()

获取名称中包含“answer”的所有输入。

关于php - 如何更正输入类型为 radio 数组的本地存储上的写入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22171447/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com