0

我使用 JQuery append API 来构建以下包含超链接的消息

var initialMsg =  jQuery('<div>').append(
                    jQuery('<span>').text('Network connection problem.  Please check your network connection. ')).append('<p>').append(
                    jQuery('<span>').text('Click ')).append(jQuery('<a>').attr('href', window.location.href).css({'cursor': 'pointer', 'color':'blue'}).text(' here')).append(jQuery('<span>').text(' to refresh page.'));

我不喜欢我明确地将颜色设置为蓝色的方式。是否可以使用伪类

a:link 
a:hover 

这里?

4

1 回答 1

0

为什么不用css来设置锚样式呢?演示:小提琴

a:link {
    cursor: pointer;
    color: Blue;
    font-size: 12pt;
}
a:hover {
    cursor: pointer;
    color: Black;
    font-size: 18pt;
}
于 2013-04-29T14:18:48.973 回答