动态增加多选下拉框的大小
我已经在 mouseover 和 onmouseout 上实现了这个,如下所示:
<select size="3" onmouseover="this.size=this.options.length;">
这一切都很好,除了我不希望它只在 mouseover 上,我希望它永远:)永远。
提前致谢。
I've implemented this on mouseover and onmouseout like so:
<select size="3" onmouseover="this.size=this.options.length;">
This is all well and good, except i don't want it only on mouseover, i want it always :) forever.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 DomReady 上更新它。
Update it on DomReady.
这对我有用:)
this worked for me :)