比如表单是
<form action="" name="f">
<input type="text" name="aa" />
<input type="radio" name="cc" value="1">1
<input type="radio" name="cc" value="2" checked >2
<input type="checkbox" name="dd[]" value="a">a
<input type="checkbox" name="dd[]" checked value="b">b
</form>
后台返回的json里的名字是 aa,cc,dd
然后根据解析josn后得到aa,cc,dd反查到dom节点,还是挺麻烦的
typeof typeof document.f.aa
和
typeof typeof
document.f.cc 都返回object 但是一个是单项,一个是列表
对于input 是 document.f.aa.value 对于radio,要和
document.f.cc[0].value
还有checkbox 要用 document.f['dd[]']这样才能找到或者 document.getElementsByName('dd[]')
只有在名字后面加'[]'去试探吗?有其他方法吗?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/67711
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.