以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  在高级开发中的下拉选择菜单问题  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=172047)

--  作者:gudao123456
--  发布时间:2021/9/19 23:01:00
--  在高级开发中的下拉选择菜单问题
在 .AddSelect("省"|北京|河北|河南")中,如何能提供下一级的选择项,在选好省后,可以选择市...
谢谢!

--  作者:有点蓝
--  发布时间:2021/9/22 9:04:00
--  
只能使用多个下拉框处理,比如

http://www.foxtable.com/mobilehelp/topics/0096.htm

--  作者:gudao123456
--  发布时间:2021/9/22 20:24:00
--  
谢谢!
但我在用帮助文档中的汽车例子时在在办公室电脑上显示正常,但回家后的电脑第二级菜单就显示不出来了(第二个选择框无内容可选)。不知何故?用的都是360浏览器,只是办公室的操作系统是win10,家里的是win7 而已

 Case "test3.htm"
        
        wb.AddForm("","form1","test3.htm")
        With wb.AddInputGroup("form1","ipg1","动态列表")
            With .AddSelect("国家","国家","|中国|德国|日本")
                .Attribute = """
            End With
            .AddSelect("品牌","品牌","")
        End With
        With wb.AddButtonGroup("form1","btg1",True)
            .Add("btn1", "确定", "submit")
        End With
        e.WriteString(wb.Build) \'生成网页
    Case  "getBrands1.htm"
        Dim pps As String = DataTables("汽车").GetComboListString("品牌","国家=\'" & e.PostValues("国家") & "\'")
        e.WriteString(pps)


换谷歌浏览器,显示正常了。是360的设置问题?如何解决呢?谢谢!
[此贴子已经被作者于2021/9/22 20:44:45编辑过]

--  作者:有点蓝
--  发布时间:2021/9/23 8:48:00
--  
我使用360浏览器测试帮助的代码,没有任何问题:http://www.foxtable.com/mobilehelp/topics/0096.htm

请上传实例测试
[此贴子已经被作者于2021/9/23 8:48:16编辑过]