我要求有一个垂直左侧菜单栏,其中包含Image button
。我用谷歌搜索,但只能找到href
链接使用。任何人都可以指导如何实现这一目标吗?
我与href
的示例代码如下。有没有办法在菜单中使用Imagebutton。
<div class="arrowlistmenu">
<h3 class="menuheader expandable">Dashboard</h3>
<ul class="categoryitems">
<li><a href="URL" target="_blank">Customer Driven Metrics</a></li>
<li><a href="URL" target="_blank">Change Condition Patrol</a></li>
</ul>
</div>
我尝试了链接http://www.obout.com/,这对很多控件都很有用,包括菜单列表,但同样,有一个URL
选项,但没有任何Image button
选项。
答案 0 :(得分:0)
我并不确定我理解你想要实现的目标,但是从我得到的内容中,你有一个type="image"
的输入字段,你想要链接到某个地方。
如果是这种情况,您可以将onclick
添加到输入元素。
e.g。
<input src="image.jpg" type="image" onclick="location.href='http://google.com';">