With wb.AddInputGroup("form1","ipg1","动态列表")
With .AddSelect("国家","国家","|中国|德国|日本")
.Attribute = "onchange=""setAjaxOptions('品牌','getBrands.htm','国家',false)"""
End
With
.AddSelect("品牌","品牌","")
End
With
请教,如果onchange事件想同时调用两个方法,比如同时要调用上面的setAjaxOptions 以及另外一个js函数 setfun() , 这要怎么写代码?