我的网站上有一个具有特定宽度的列表框。问题是有时文本太大而被从列表中截断。我希望在列表框中的每个条目(每个)上插入一个新行,以便它自动成为一个新行。
可能吗?
列表框(注意被裁剪的文本)
代码
<asp:ListBox ID="lstLegalEntity" runat="server" SelectionMode="Multiple" CssClass="client-bg-repeat" ForeColor="#000060" AutoPostBack="True">
<asp:ListItem>Select One Two Three Four Five Six Seven Eight</asp:ListItem>
<asp:ListItem>Select One Two Three Four Five Six Seven Eight</asp:ListItem>
<asp:ListItem>Select One Two Three Four Five Six Seven Eight</asp:ListItem>
<asp:ListItem>Select One Two Three Four Five Six Seven Eight</asp:ListItem>
</asp:ListBox>
我希望我可以将每个列表项的文本放入一个函数中,该函数在每 7 个字符后插入一个“换行符”,这样就不会切断任何条目,并且每个长条目都显示为两行。
谢谢。