我的网站上有一个具有特定宽度的列表框。问题是有时文本太大而且从列表中删除了。我希望在列表框中的每个条目(每个)上插入一个新行,以便它自动成为一个新行。
有可能吗?
<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>
我希望我可以将每个List Item的文本放入一个函数中,该函数在每7个字符后插入一个“换行符”,这样就不会切断任何条目,并且每个长条目都以两行显示。
感谢。