我使用 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
这里?