asp.net 下拉控件中单个项目的工具提示

发布于 2024-09-16 08:44:37 字数 127 浏览 2 评论 0原文

在我的网站中,我有一个 asp.net 下拉控件。控件中的值长度太长,无法在该控件中显示。由于我网站的空间一致性,我无法增加控件的大小。用户很难看到下拉列表中的整个值来选择正确的值。

如何为下拉控件中的每个项目制作工具提示?

In my web site I have one asp.net dropdown control. The length of value in the control is too long to display in that control. I can't increase the size of control because of space consistency in my website. It's difficult to the user to see entire value in dropdown to select a correct value.

How to make a tool tip for each item in dropdown control?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昵称有卵用 2024-09-23 08:44:37

是的,您可以为每个项目添加“标题”属性。但我怀疑你的访客会注意到这个相当微妙的暗示。

foreach (ListItem item in YourDropDownList.Items)
{
  item.Attributes.Add("title", "(the long description)");
}

Yes, you can add a "title" property to each item. But I doubt your visitors will notice this rather subtle hint.

foreach (ListItem item in YourDropDownList.Items)
{
  item.Attributes.Add("title", "(the long description)");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文