我有一个通过 javascript 制作的可点击 gridview 行,其中每次单击 gridview 中的某个项目时,都会选择并突出显示整行。
所以这是我的javascript..
<script type="text/javascript">
$(function() {
var RowID = $('#<%=RowKey.ClientID%>').val();
if (RowID != "0") {
$('#<%=UserGrid.ClientID%> tr[id=' + RowID + ']').css({ "background-color": "white", "color": "black" });
}
$('#<%=UserGrid.ClientID%> tr[id]').click(function() {
$('#<%=UserGrid.ClientID%> tr[id]').css({ "background-color": "white", "color": "Black" });
$(this).css({ "background-color": "Black", "color": "White" });
$('#<%=RowKey.ClientID%>').val($(this).attr("id"));
});
$('#<%=UserGrid.ClientID%> tr[id]').mouseover(function() {
$(this).css({ cursor: "hand", cursor: "pointer" });
});
});
</script>
当用户单击该行时,如何禁用网络表单中的某个按钮?