是否有任何插件可以更改链接下划线颜色和文本颜色?我需要将该功能添加到现有的 HTML 代码中,但还没有找到好的东西。我无法更改 HTML,因此无法包装<a>
或<span>
使用 CSS。
问问题
883 次
2 回答
0
听起来您正在尝试更改链接,对吗?您不能更改 html 还是无法访问它?如果您可以更改它,我建议您这样做:
//set the anchor color to the underline
$('a').css('color', '#fff');
//get the text in the link and wrap it in a span with the text color
var linkText = $('a').innerHTML();
var linkText = '<span style="color:#000">' + linkText + '</span>';
//update the anchor with the new html
$('a').innerHTML(linkText);
让我知道这是否有意义:)
于 2012-09-24T03:04:18.543 回答