gpt4 book ai didi

javascript - 专注于文本字段背景没有改变颜色

转载 作者:太空宇宙 更新时间:2023-11-03 20:56:34 25 4
gpt4 key购买 nike

嗨,这可能是一个愚蠢的问题,但是当我点击一个文本字段时,我希望背景改变颜色,但我不明白为什么它不起作用

谁能告诉我哪里错了

代码如下

//JQUERY
$(function() {

$('input[type="text"]').focus(function()
{
$(this).addClass("focus");
});

$('input[type="text"]').blur(function()
{
$(this).removeClass("focus");
});

})

;

//CSS
.focus {
border: 2px solid #AA88FF;
background-color: #FFEEAA;
}

HTML//当我也检查它们时,所有文本字段都是type text

最佳答案

您可以在 CSS 中执行此操作而无需 jQuery(至少对于较新的主流浏览器而言)

input[type="text"]:focus
{
border: 2px solid #AA88FF;
background-color: #FFEEAA;
}

:)

关于javascript - 专注于文本字段背景没有改变颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9836729/

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