当表单选择字段延伸到切换容器之外时,jquery 将鼠标悬停
首先,这是我使用 jquery 的 html
<div class='container'>
<div class='toolBar'></div>
<div class='element'>
<a href="#"><img src=''/></a>
<form>
<select name='albumSelect' class='albumSelect'></select>
</form>
</div>
</div>
,这样当容器悬停时它会显示表单,并在鼠标移开时隐藏。当然,问题是,当选择字段太长时,您将无法将鼠标悬停在容器元素上,并且表单会消失。
我应该测试表单是否具有焦点,如果是,则不要在鼠标移开时隐藏表单吗?有什么办法可以解决这个问题?
First, here is the html
<div class='container'>
<div class='toolBar'></div>
<div class='element'>
<a href="#"><img src=''/></a>
<form>
<select name='albumSelect' class='albumSelect'></select>
</form>
</div>
</div>
I'm using jquery so that when the container is hovered it shows the form, and hides on mouseout. Of course the problem is that when the select field is too long you lose hover on the container element and the form disappears.
Should i test if the form has focus, and if so do not hide the form on mouseout? What would be a way around this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我本来就不用额外的痛苦,就可以使用 css 调整选择框的大小!
If i would have been then for no extra pain adjusted the
size of select box using css
!