谷歌字体和Safari 选择问题

发布于 2024-11-28 20:14:00 字数 200 浏览 0 评论 0原文

当我从 Google Fonts 导入字体时,我遇到了选择问题。当我在 Safari 上单击“选择”时,网站会重新加载。在 Chrome、FF、IE 上一切正常。示例:

http://jsfiddle.net/stcvS/

有人可以帮忙吗?

I have a problem with select when I import fonts from Google Fonts. When I click on select on Safari, website reloads. On Chrome, FF, IE everything is ok. Example:

http://jsfiddle.net/stcvS/

Can anyone help?

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

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

发布评论

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

评论(4

﹏半生如梦愿梦如真 2024-12-05 20:14:00

您可以通过 CSS 定位 Safari 并避免该问题:

@media screen and (-webkit-min-device-pixel-ratio:0) {

/* for Safari 5.1 bug http://stackoverflow.com/questions/7025826/google-fonts-safari-select-problem */

.formData SELECT {

    font-family:Helvetica, arial, sans-serif;
}

}

You can target Safari via CSS and avoid the problem:

@media screen and (-webkit-min-device-pixel-ratio:0) {

/* for Safari 5.1 bug http://stackoverflow.com/questions/7025826/google-fonts-safari-select-problem */

.formData SELECT {

    font-family:Helvetica, arial, sans-serif;
}

}
土豪我们做朋友吧 2024-12-05 20:14:00

我不确定 JQuery 是否是您想要走的路线,但这也许会有所帮助:

<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
</head>
<body>
    <select id="dropdown">
        <option>kiko</option>
        <option>atletico</option>
    </select>

    <script>
    jQuery(document).ready(function($){
        $("#dropdown").click(function(event) {
        event.preventDefault();
        });
    });
    </script>

I'm not sure if JQuery is a route you want to go down, but perhaps this could help:

<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
</head>
<body>
    <select id="dropdown">
        <option>kiko</option>
        <option>atletico</option>
    </select>

    <script>
    jQuery(document).ready(function($){
        $("#dropdown").click(function(event) {
        event.preventDefault();
        });
    });
    </script>
隱形的亼 2024-12-05 20:14:00

这似乎是 Safari 5.1 中的一个错误。每个带有 CSS @font-face 的 SELECT 都会因页面重新加载而失败。

This seems to be a bug in Safari 5.1. Every SELECT with CSS @font-face fails with page reload.

旧瑾黎汐 2024-12-05 20:14:00

最好使用

      并应用必要的 css 和 javascript,而不是使用 < ;select> 在这种特殊情况下,我们必须应用不同的 font-familiy 、 font-style 等。

      It's better to user <ul></ul> or <ol></ol> and apply necessary css and javascript insted of using <select></select> in this type of special case where we have to apply different font-familiy , font-style, etc.

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