单击按钮链接到新 window 中的 html 页面
Linking to a html page in a new window from a button click
我在 Bootstrap 中使用 Spring Tool Suite 工作。我制作了一个 html 页面 (reprint-emblems-reports.html),我希望在单击 Go 按钮后显示该页面。我正在通过本地主机工作。该网站不是实时的。我是 html.
的新手
这是“前往”按钮的代码。
<button type="button" class="btn btn-aramark-primary">Go</button>
Go 按钮在 reprint-emblems.html 内。
reprint-emblems-reports.html 在同一个文件夹中 (reprint-emblems)
我希望单击“开始”按钮打开一个新选项卡并显示转载标志-reports.html 页面。
谢谢
您可以使用 javascript
<button onclick="window.location.href='/your path here'" type="button" class="btn btn-aramark-primary">Go</button>
您可以在按钮上添加 "onclick" 属性:
<button type="button" class="btn btn-aramark-primary" onclick="window.open('/your-path')">Go</button>
window.open() 可以打开新标签页或新标签页 window(取决于您的浏览器配置)
我在 Bootstrap 中使用 Spring Tool Suite 工作。我制作了一个 html 页面 (reprint-emblems-reports.html),我希望在单击 Go 按钮后显示该页面。我正在通过本地主机工作。该网站不是实时的。我是 html.
的新手这是“前往”按钮的代码。
<button type="button" class="btn btn-aramark-primary">Go</button>
Go 按钮在 reprint-emblems.html 内。
reprint-emblems-reports.html 在同一个文件夹中 (reprint-emblems)
我希望单击“开始”按钮打开一个新选项卡并显示转载标志-reports.html 页面。
谢谢
您可以使用 javascript
<button onclick="window.location.href='/your path here'" type="button" class="btn btn-aramark-primary">Go</button>
您可以在按钮上添加 "onclick" 属性:
<button type="button" class="btn btn-aramark-primary" onclick="window.open('/your-path')">Go</button>
window.open() 可以打开新标签页或新标签页 window(取决于您的浏览器配置)