Facebook 请求对话框出现在 DIV 后面(在 Safari 中)

发布于 2024-12-26 12:26:20 字数 820 浏览 0 评论 0原文

我有几个带有 z 索引的 DIV(例如:z 索引:999991;)。在 Safari 中,这会导致我创建的请求对话框出现在某些 DIV 后面。

他们是否有办法为请求对话框提供 z 索引或其他内容,以便它始终出现在每个 DIV 的顶部?

我的请求对话框代码:

<script src="http://connect.facebook.net/en_US/all.js"></script>
    <p>
    <input type="button"
      onclick="sendRequestViaMultiFriendSelector(); return false;"
      value="Send Request to Many Users with MFS"
    />
    </p>

    <script>
      function sendRequestViaMultiFriendSelector() {
        FB.ui({method: 'apprequests',
          message: 'Join me on Mahjong Solitaire!',
          exclude_ids: '<?php echo $friends_array; ?>'
        }, requestCallback);
      }

      function requestCallback(response) {
        // Handle callback here
      }
    </script>

希望这是可能的!

I have several DIVs with z-indexes (like: z-index: 999991;). In Safari, this results that the Requests Dialog I have created appears behind some DIV's.

Is their a way to give the Requests Dialog a z-index or something so it will always appear on top of every DIV?

My Requests Dialog code:

<script src="http://connect.facebook.net/en_US/all.js"></script>
    <p>
    <input type="button"
      onclick="sendRequestViaMultiFriendSelector(); return false;"
      value="Send Request to Many Users with MFS"
    />
    </p>

    <script>
      function sendRequestViaMultiFriendSelector() {
        FB.ui({method: 'apprequests',
          message: 'Join me on Mahjong Solitaire!',
          exclude_ids: '<?php echo $friends_array; ?>'
        }, requestCallback);
      }

      function requestCallback(response) {
        // Handle callback here
      }
    </script>

Hope this is possible!

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

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

发布评论

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

评论(1

痴意少年 2025-01-02 12:26:20

使 z-index 更小,这确实有效!

Made the z-index smaller and this indeed worked!

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