日期:2014-05-16 浏览次数:20467 次
$("#Mode").click(function () {
var val = $(this).text();
if (val == "当前为单选模式") {
$("#dataGrid").datagrid({ singSelect: false });
$("#Mode").linkbutton({ text: "当前为多选模式" })
}
else {
$("#dataGrid").datagrid({ singSelect: true });
$("#Mode").linkbutton({ text: "当前为单选模式" })
}
})