以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  .AddRadioGroup怎么使用.Attribute ?  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=152768)

--  作者:石四
--  发布时间:2020/7/21 16:36:00
--  .AddRadioGroup怎么使用.Attribute ?
就是选定一个选项后触发某个“onChange”
  With wb.AddRadioGroup("form1","学历","学历"). .Attribute = "onchange..........."
                .Add(
"
本科","本科")
                .Add(
"
硕士","硕士")
                .Add(
"
博士","博士")
            End With
这样貌似不行。

--  作者:有点蓝
--  发布时间:2020/7/21 16:40:00
--  
.Add("本科","本科").Attribute = "onclick=\'xxxx\'"