我有一个下拉列表,我想为下拉列表项添加工具提示.
我尝试使用以下代码,但它不起作用;
for(int d=0;d<drpID.Items.Count;d++)
{
drpID.Items[d].Attributes.Add("title", drpID.Items[d].Value);
}
谁可以帮我这个事?
解决方法:
试试这样;
public void Tooltip(ListControl lc)
{
for (int d = 0; d < lc.Items.Count; d++)
{
lc.Items[d].Attributes.Add("title", lc.Items[d].Text);
}
}
您应该使用工具提示的.Text属性,而不是.Value.
查看此链接:http://www.dotnetspider.com/resources/5099-Tool-tip-for-DropDownList-ASP-NET.aspx