我有一张包含一些文字数据的表格。其中一列应该是可点击的:将出现用于编辑此行的弹出窗口。
向用户解释点击此行会导致弹出窗口的最佳方法是什么? 我看到4种变体:
<td><a href="#">Smith</a></td>
<td><span style="cursor:pointer; border-bottom: dotted 1px">Jackson</span></td>
<td><button>Doe</button></td>
<td>Johnson <span style="cursor:pointer" class="glyphicon glyphicon-edit"></span>
Here is a fiddle包含所有这些变体。
答案 0 :(得分:1)
该图标最具吸引力,因为其他图标只显示您将获得更多信息。虽然图标清晰,但用户将进行编辑。
我也会像这样对它进行悬停影响:
$(document).ready(function() {
$('#test2').hover(function(){
$('#test').addClass('glyphicon glyphicon-edit');
},
function(){
$('#test').removeClass('glyphicon glyphicon-edit');
});
});
#test2
是单元格,#test
是跨度。