领料控制帮助

时间:2011-04-19 12:42:55

标签: javascript jquery asp.net

对不起,简短的标题,我不知道怎么说这个。基本上我正在寻找一些帮助来创建(或现有控件的源代码),它将生成和选择列表,如下图所示。

http://img807.imageshack.us/i/picklistcontrol.png/

一旦点击它就需要显示全长值,否则它应该有一个截断值。这需要在经典的asp或javascript / jquery中。

非常感谢任何帮助。

编辑:

很抱歉,但我没有意识到这将是一个问题,但解决方案必须适用于IE7及更高版本。

1 个答案:

答案 0 :(得分:0)

这可以使用基本的HTML和CSS来实现:

小提琴 http://jsfiddle.net/garreh/kFH3u/

<style type="text/css">
   select { width: 100px; }
</style>

<select name="test">
    <option>Here is some text.</option>
    <option>Here is some more text.</option>
    <option>And some more text.</option>
    <option>This is another sentence.</option>
    <option>This is a slightly longer sentence.</option>
</select>

IE总是必须“特殊”; - )

无论如何,请看一下:Taming the select

http://www.icant.co.uk/forreview/tamingselect/selects.gif

此帖子中还有一个很好的stackoverflow答案:Select dropdown with fixed width cutting off content in IE