1.文字过长显示省略号(....) white-space: nowrap;overflow: hidden;text-overflow: ellipsis;
2.获取当前的ID :
<asp:HiddenField runat="server" ID="hiddenOrderId" />
$('#<%:hiddenOrderId.ClientID%>').val();
3.使用checkbox外面有文字,最好用label包含,这样点击文字也可以选中,用户体验好。
<label><input type="checkbox"/> 选中</label>