gpt4 book ai didi

html - 用 3 个按钮创建一个表单

转载 作者:太空宇宙 更新时间:2023-11-04 12:27:40 25 4
gpt4 key购买 nike

我想用 3 个不同的操作按钮制作 html 表单。这些按钮是:日;周,月。例如,当我单击 DAY 按钮时,我想在某个文件夹(例如 ImagesFolder)中查看 DayImage,当单击 WEEK 时查看 WekImage。我会把一些图片放在那个文件夹里。这是我目前所拥有的

@using Portal.Framework.Models;

<form id="reportParametersForm" method="GET" action="@string.Format("{0}/{1}", @Url.Content("~/Reports/View"), ViewBag.Report)">
<fieldset style="padding: 0.2em 0 1.2em 0;height:60px">
<legend style="margin: 0 1px 0 10px;padding: 3px 36px 3px 20px;background-color: #494949;color: white;font-size: 11pt;">
@Html.Resource(String.Format("Report_{0}", ViewBag.Report as string))</legend>

<table border="0" cellspacing="0" cellpadding = "0" style="font-size:x-small">
<tr valign="bottom" style="height:10px">
<td width="20px" style="vertical-align: top">
</td>
<td width="30px" style="vertical-align: middle" align="center" nowrap="nowrap">
<label style="font-size:small">
Time period</label>

<button class="button" type="submit">
Day</button>

<button class="button" type="submit">
Week</button>

<button class="button" type="submit">
Month</button>
</td>
</tr>

</table>
</fieldset>
</form>

但是当我点击某个按钮时没有任何 Action 。我也想拥有,稍后当我单击按钮打开一些 SSRS 报告时。以及如何为点击的按钮添加悬停 Action ?

最佳答案

您可以添加 formaction 属性为不同的按钮提供不同的操作。

<button class="button" type="submit" formaction="action-url">Day</button> 

但是旧浏览器不支持 formaction 属性。对于单击按钮的悬停操作,请使用 css。

关于html - 用 3 个按钮创建一个表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27897762/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com