gpt4 book ai didi

css - 保留 btn :focus styling

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

我试图在点击离开后保持 btn:focus 样式。我该怎么做?

<a href="javascript:;" id="item1" class="hello btn btn-default"> item1 </a>
<a href="javascript:;" id="item2" class="hello btn btn-default"> item2 </a>
<a href="javascript:;" id="item3" class="hello btn btn-default"> item3 </a>

.btn:hover,
.btn:focus {
background: #00f;
border-color: #00f; }

最佳答案

像这样使用 Jquery:

$(document).ready(function(){
$(".btn").click(function(){
$(".btn").addClass("custom-focus");
});
});

CSS:

.custom-focus {
background: #00f;
border-color: #00f;
}

关于css - 保留 btn :focus styling,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51925799/

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