gpt4 book ai didi

jquery - 从 jquery 设置样式属性

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

我正在尝试制作一个脚本,当单击该按钮时,将左右边框添加到一行 3 个按钮中的按钮,否则保持没有边框。我到目前为止的代码是:

$("#popular").click(function(){  
clearBorders();
//make borders here (this works)
});

$("#suggestions").click(function(){
clearBorders();
//make borders here (this works)
});

$("recent").click(function(){
clearBorders();
//make borders here (this works)
});

function clearBorders(){
$('popular').css("border", "solid");
$('suggestions').css("border", "none");
$('recent').css("border", "none");
}
});

我能够很好地创建边框,但出于某种原因,clearborders 方法不起作用。我知道正在调用该函数,因为如果我在它的开头放置一个警报,它就会显示出来。为什么这个功能不起作用?

最佳答案

您的选择器在您的 clearBorders() 函数中缺少前导 ID (#) 或类 (.) 指示符

关于jquery - 从 jquery 设置样式属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7824510/

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