我正在使用Jquery mobile。
我有一个页脚div。
在那个div中,我想要显示2个图像按钮。
按钮出现但图像没有。
这是我的加价:
<div class="footer-wrapper">
<div data-role='footer' data-theme='a' data-position='fixed'>
<div data-role='navbar' id='kms'>
<table style="width: 100%">
<tr>
<td style="text-align: center">
<asp:ImageButton ID="btnEnterPIN" runat="server" Height="42px" Width="42px" ImageUrl="~/Images/Cute-Ball-Go-icon.png"
OnClientClick="return false;" ClientIDMode="Static" />
</td>
<td style="text-align: center">
<asp:ImageButton ID="btnEscape2" runat="server" Height="42px" Width="42px" ImageUrl="~/Images/back_2.png"
OnClientClick="return false;" ClientIDMode="Static" />
</td>
</tr>
</table>
</div>
</div>
</div>
这就是它的样子:
答案 0 :(得分:0)
通过使用html img而不是asp img,它可以正常工作