【发布时间】:2019-12-22 06:09:22
【问题描述】:
我正在尝试为我的按钮添加链接。
我当前的 HTML 代码如下
<td>
<button style="background: url('images/button1.png') no-repeat; background-size:155px; left: 200px; width: 155px; height: 50px; border: 0;">Get Support</button>
<td>
<button style="background: url('images/button2.png') no-repeat; background-size:155px; left: 200px; width: 155px; height: 50px; border: 0;">Shop Bike</button>
</td>
<td>
<button style="background: url('images/button2.png') no-repeat; background-size:155px; left: 200px; width: 155px; height: 50px; border: 200px;">Button Three</button>
</td>
如何为每个按钮添加指向其他页面的链接 例如...如果我点击:获取支持按钮,它会将我重定向到我已经创建的支持页面。
【问题讨论】: