jQuery UI 对话框按钮上的聚焦环

发布于 2024-12-08 17:39:53 字数 354 浏览 3 评论 0原文

我有一个 jQuery 对话框,其中有一个用于关闭它的按钮。当对话框打开时,该按钮具有焦点。问题在于焦点是按钮文本周围的虚线,而不是整个按钮周围的焦点环。我正在使用 jQuery 的平滑主题。

我正在 WordPress 插件中使用该对话框。

我的代码是:

$('#mydialog').dialog({
        title: 'My Title',
        position: [619,200],
        resizable: false,
        buttons: {"OK" : function(){$(this).dialog("close");}}
    });

I've got a jQuery dialog box with a button to close it. The button has focus when the dialog box opens. The problem is that the focus is a dotted line around the button's text instead of a focus ring around the entire button. I'm using jQuery's smoothness theme.

I'm using the dialog in a WordPress plugin.

My code is:

$('#mydialog').dialog({
        title: 'My Title',
        position: [619,200],
        resizable: false,
        buttons: {"OK" : function(){$(this).dialog("close");}}
    });

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

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

发布评论

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

评论(1

吹泡泡o 2024-12-15 17:39:53

问题可能与浏览器有关;每个浏览器突出显示焦点元素的方式有所不同。

The problem may relate to the browser; the way each browser highlights the focused element differs.

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