gpt4 book ai didi

javascript - jquery 如何删除 ui-state-focus

转载 作者:行者123 更新时间:2023-11-28 13:44:39 25 4
gpt4 key购买 nike

使用 jquery 和按钮使用了我的样式,但是当我单击按钮时,样式在 ui-state-focus 上发生了变化。我尝试删除 jquery 样式

$("button").mousedown(function () {
$('button').removeClass("ui-state-focus");
});

但是没有成功。如何去掉jquery样式?

最佳答案

我在焦点中添加了removeClass并为我工作。

$("button").focus(function () {
$(this).removeClass("ui-state-focus");
});

关于javascript - jquery 如何删除 ui-state-focus,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15359665/

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