gpt4 book ai didi

jquery.css :link of a jquery object

转载 作者:行者123 更新时间:2023-12-01 07:29:27 25 4
gpt4 key购买 nike

我想使用 jQuery.css() 属性来为链接的颜色属性。最简单的方法是使用

var $el = $("#test a:link"); //don't want to use this
$el.css({"color" : "red"});

但是我已经在其他多个地方定义了 $el 并使用了

var $el = $("#test"); 

我仍然可以通过重用 $el 和其他代码来访问 a:link a:visited a:hover a:active 属性吗?

($el/*other code to access a:link of #test*/)
.css({"color" : "red"});

http://jsfiddle.net/RUYfZ/1/谢谢。

最佳答案

jQuery 采用 optional 'context' parameter允许您在现有结果中搜索:

var $el = $("#test"); 
$('a:link', $el).css({"color" : "red"});

上下文可以是 DOM 元素、文档或 jQuery 对象。

关于jquery.css :link of a jquery object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7339395/

25 4 0
文章推荐: jQuery slider 的 handle 不滑动
文章推荐: jQuery 对
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com