这是一个创建于 4224 天前的主题,其中的信息可能已经有所发展或是发生改变。
比如表单是
<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[]')
只有在名字后面加'[]'去试探吗?有其他方法吗?