Select Case e.Path Case "test.htm", "" Dim wb As New weui wb.AddForm("","form1","test.htm") With wb.AddInputGroup("form1","ipg1","列表项目") .AddSelect("os","操作系统","iOS|Windows|Andriod") .AddSelect("bw","浏览器","Chorme|[Edge]|Firefox|Internet Explorer") End With With wb.AddButtonGroup("form1","btg1",True) .Add("btn1", "确定", "submit") End With wb.InsertHTML("<style>.weui_select{text-align:right;text-align-last: right}</style>") e.WriteString(wb.Build) '生成网页 End Select
|