jQuery UI 对话框按钮上的聚焦环
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题可能与浏览器有关;每个浏览器突出显示焦点元素的方式有所不同。
The problem may relate to the browser; the way each browser highlights the focused element differs.