好的,所以这听起来很简单,使用
jquery的“点击”功能.
我想要的链接的ORIGINAL颜色不是它的悬停颜色 – 例如如果链接是绿色的,悬停状态为橙色,我会抓住绿色的颜色.
任何人有任何想法?
编辑:道歉,但是由于一些鹰眼睛发现(感谢他们指出)绿色实际上是“rgb(0,128,0)”,而不是rgb(0,255,0),如我的原始小提琴.
解决方法
存储在
jQuery’s
data
对象中:
$('a').each(function() { $(this).data('color',$(this).css('color') ); }) .click(function() { alert( $(this).data('color') ); });
这是你的小提琴:http://jsfiddle.net/sVDYe/4/
为了更好的表现,我会在循环中使用the static methods. They’re much faster:
$('a').each(function() { $.data(this,'color',$.css(this,'color') ); });