我制作了一个图像作为编辑文本按钮。 出于某种原因,我无法点击它。我错过了什么吗? 如果我把它作为文本留下来就可以了。
<asp:EditCommandColumn EditText="<li class='fa fa-pencil-square-o' style='color:green;background-color:white;font-size:25px;'/>" CancelText ="Cancel" UpdateText="Update" ItemStyle-Width="60" />
更新:
HTML呈现
答案 0 :(得分:0)
显然你无法将图像包裹在<li>
我将其更改为<span>
并且有效:)
<asp:EditCommandColumn EditText="<span aria-hidden='true' class='fa fa-pencil-square-o' style='color:green;background-color:white;font-size:25px;'/>" CancelText ="Cancel" UpdateText="Update" ItemStyle-Width="60" />