我有一个 asp 经典下拉框,我需要一个 VBScript 中的 OnClick 事件,以便在从下拉列表中进行选择时显示额外的两个文本字段。
谁能帮我?
我需要先隐藏两个文本字段,然后在请求时显示。
非常感谢,
分子量
'-------------- Date Period ------------------
response.write "<tr><td align='left'>Date Period:</td><td>"
response.write "<select name=tbdateselect id=tbdateselect style='width:160px;'>"
response.write "<option value=''>-</option>"
response.write "<option value=Last Month>Last Month</option>"
response.write "<option value=Last (rolling) Month>Last (rolling) Month</option>"
response.write "<option value=Last 6 Months>Last 6 Months</option>"
response.write "<option value=Last 12 Months>Last 12 Months</option>"
response.write "<option value=Last (rolling) 12 Months>Last (rolling) 12 Months</option>"
response.write "<option value=Date Range>Date Range</option>"
response.write "</select>"
response.write "</td></tr>"
'-------------- Date From --------------------
response.write "<tr><td align='left'>Date From:</td><td>"
response.write "<input type=text name=tbdatefrom size=23 value=''><font color=gray><i> yyyy-mm-dd</i></font></td>"
response.write "</td></tr>"
'------------------ Date To ------------------
response.write "<tr><td align='left'>Date To:</td><td>"
response.write "<input type=text name=tbdateto size=23 value=''><font color=gray><i> yyyy-mm-dd</i></font></td>"
response.write "</td></tr></table><font size=4 color=white>*hiddenfield*</font>"
response.write "</td>"
我需要:如果选项值 = 日期范围,则显示日期从和日期到