几个要点:
1、在Frame_A 中根据radio或checkbox的选择情况,将值保存在变量中,如有必要,可以遍历radio及checkbox选择情况,将值保存在变量中。比如:strRadio="1,2,3,4,...";strCheck="a,b,c,d,...";2、在Frame_B中定义两个变量用于接收上面Frame_A中生成的strRadio和strCheck。比如可以同名定义:var strRadio="",strCheck="";3、在Frame_A中设置Frame_B中的两个变量值:
parent.Frame_B.strRadio=strRadio;
parent.Frame_B.strCheck=strCheck;4、在Frame_B中定义function处理strRadio 与 strCheck
( 也许您要用到如 strRadio.split(","); 的句子来分开各个Radio值 )