gpt4 book ai didi

javascript - 如何让按钮不获得焦点?

转载 作者:行者123 更新时间:2023-12-02 23:34:38 25 4
gpt4 key购买 nike

我希望我的 (ExtJS) 工具栏按钮在被单击时捕获网页上的焦点,而是在单击时保持焦点不变的同时执行其“操作”。我该怎么做?

最佳答案

取消 onmousedown 的默认行为会阻止元素获得焦点:

// Prevent capturing focus by the button.
$('button').on('mousedown',
/** @param {!jQuery.Event} event */
function(event) {
event.preventDefault();
}
);

关于javascript - 如何让按钮不获得焦点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/982214/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com