将工具提示添加到 asp.net mvc 中的帮助程序 html.dropdownlist

发布于 2024-10-11 07:31:56 字数 304 浏览 3 评论 0原文

我有一个仅显示产品代码 101,102,103 的下拉列表,

如果用户将鼠标悬停在产品代码上,我希望标题显示为工具提示。

所以这不是你正常的 DataValue & DataText 场景,因为“101”既是显示文本又是显示文本。值。

我相信我需要使用 jQuery 来实现这种效果。 我还相信我需要将每个列表项的标题属性设置为产品标题。

我的问题是,使用helper html.dropdownlist如何设置标题属性?

谢谢,这是我第一天使用MVC

I have a dropdownlist that displays just products codes 101,102,103

If the user hovers over a product code I would like the title to appear as a tooltip.

So it's not your normal DataValue & DataText scenerio, because "101" would be both the display text & the value.

I believe I will need to use jQuery to achive this effect.
And I also believe I would need to set the Title attribute of each list item as the Product Title.

My question is, using helper html.dropdownlist how can I set the title attribute?

Thanks, this is my first day using MVC

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

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

发布评论

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

评论(1

风流物 2024-10-18 07:31:56

我们曾经用“tipsy”来表达非常相似的东西。 http://plugins.jquery.com/project/tipsy

我们实际上更进一步, “创建”这样的属性

<span class="tipsyItem" tipsy="This is my tooltip text!">This is my regular text!</span>

原因是醉酒有时仍会显示常规工具提示。我们使用了一些像这样的高级设置。

$('.tipsyItem').tipsy({title: 'tipsy'});

另外你还可以设置主题。甚至还能够让它支持嵌入在工具提示中的 html 链接等。

$('.tipsyItem').tipsy({html: true });

Twitter过去用的是Tipsy。我不确定他们是否仍然这样做。

We used tipsy once for something very similar. http://plugins.jquery.com/project/tipsy

We actually took it a step further and "created" an attribute like this

<span class="tipsyItem" tipsy="This is my tooltip text!">This is my regular text!</span>

The reason was that tipsy would still show the regular tooltip on occasion. We used some of the advanced settings like this.

$('.tipsyItem').tipsy({title: 'tipsy'});

Plus you can theme it. Also were even able to get it to support html embedded in the tooltips for links and such.

$('.tipsyItem').tipsy({html: true });

Twitter used to use tipsy. I'm not sure if they still do.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文