Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在几个浏览器中,我在单选按钮周围有正方形。我设法使用 javascript: 解决了它onfocus="this.blur()",但是我的网络应用程序是用 gwt 和 gxt 构建的,我不知道如何将它应用到我的Radio button;
onfocus="this.blur()"
Radio button;
focus您可以通过传递false给setFocus方法来删除。
focus
false
setFocus
button.setFocus(false);
看到这个