滚动在 内不起作用在 Firefox 中阻止

在 Firefox 中,我无法通过拖动 块内的滚动条来滚动:

<a id="monther" class="single" href="">
    <span>Month</span>
    <ul class="month" style="height:100px;width:200px;overflow:auto;">
        <li id="1310421600">Jul 2011</li>
        <li id="1307829600">Jun 2011</li>
        <li id="1305151200">May 2011</li>
        <li id="1302559200">Apr 2011</li>
        <li id="1299884400">Mar 2011</li>
        <li id="1297465200">Feb 2011</li>
        <li id="1294786800">Jan 2011</li>
        <li id="1292108400">Dec 2010</li>
        <li id="1289516400">Nov 2010</li>
    </ul>
</a>

值得注意的是:

  • 这在我尝试过的其他浏览器中工作正常
  • 如果我更改
    它在 Firefox 中工作正常,正如预期的那样
  • 我仍然可以使用鼠标滚轮滚动,或者通过单击滚动条两端的箭头(在 Firefox 中

)我正在使用 是因为我绑定了它的 blur 事件来隐藏

In Firefox, I am unable to scroll by dragging the scroll bar inside an <a> block:

<a id="monther" class="single" href="">
    <span>Month</span>
    <ul class="month" style="height:100px;width:200px;overflow:auto;">
        <li id="1310421600">Jul 2011</li>
        <li id="1307829600">Jun 2011</li>
        <li id="1305151200">May 2011</li>
        <li id="1302559200">Apr 2011</li>
        <li id="1299884400">Mar 2011</li>
        <li id="1297465200">Feb 2011</li>
        <li id="1294786800">Jan 2011</li>
        <li id="1292108400">Dec 2010</li>
        <li id="1289516400">Nov 2010</li>
    </ul>
</a>

Things of note:

  • This works fine in other browsers I tried
  • If I change the <a> to a <div> it works fine in Firefox as expected
  • I can still scroll using the mousewheel, or by clicking the arrows at either end of the scrollbar (in Firefox)

The reason I am using <a> is because I am binding it's blur event to hide the <ul>.

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

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

发布评论

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

评论(3

樱娆 2024-11-26 21:01:11

根据 w3 验证器a 中不允许使用 UL,任何规范的省略都会产生不受欢迎的结果

According to w3 validator, UL is not allowed in a, any omit of specifications can produce unwelcome results

最好是你 2024-11-26 21:01:11

另一种选择是避免使用模糊事件,而是在单击页面上除该小部件之外的任何其他位置时关闭它。

这是jquery:

$(document).click(function(evt) {
    if($(evt.target).parents("#monther").length != 0) {
        return;
    }

    $("#monther .month").hide();
}

Another option is to avoid using the blur event and instead close it when you click anywhere else on the page except for that widget.

This is jquery:

$(document).click(function(evt) {
    if($(evt.target).parents("#monther").length != 0) {
        return;
    }

    $("#monther .month").hide();
}
九八野马 2024-11-26 21:01:11

您的文档结构无效。

解决此问题的正确方法是通过添加 tabindex 属性使包含的

可聚焦:

<div id="monther" class="single" tabindex="0">
    <span>Month</span>
    <ul class="month" style="height:100px;width:200px;overflow:auto;">
        <li id="1310421600">Jul 2011</li>
        <li id="1307829600">Jun 2011</li>
        <li id="1305151200">May 2011</li>
        <li id="1302559200">Apr 2011</li>
        <li id="1299884400">Mar 2011</li>
        <li id="1297465200">Feb 2011</li>
        <li id="1294786800">Jan 2011</li>
        <li id="1292108400">Dec 2010</li>
        <li id="1289516400">Nov 2010</li>
    </ul>
</div>

在此处查看实际操作。

    在包含的

    失去焦点后隐藏IE、Chrome 和火狐。

Your document structure is invalid. <ul> is a block-level element, <a> is an inline element; inline elements are not allowed to contain block-level elements, only other inline elements. (Block-level elements may contain either.) That this works in other browsers is an implementation-dependent quirk and you should not count on it continuing to work in the future.

The proper way to solve this is to make a containing <div> focusable by adding a tabindex attribute:

<div id="monther" class="single" tabindex="0">
    <span>Month</span>
    <ul class="month" style="height:100px;width:200px;overflow:auto;">
        <li id="1310421600">Jul 2011</li>
        <li id="1307829600">Jun 2011</li>
        <li id="1305151200">May 2011</li>
        <li id="1302559200">Apr 2011</li>
        <li id="1299884400">Mar 2011</li>
        <li id="1297465200">Feb 2011</li>
        <li id="1294786800">Jan 2011</li>
        <li id="1292108400">Dec 2010</li>
        <li id="1289516400">Nov 2010</li>
    </ul>
</div>

See it in action here. The <ul> hides after the containing <div> loses focus in IE, Chrome, and Firefox.

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