我使用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
这里吗?
答案 0 :(得分:0)
为什么不使用css来设置锚样式?演示:fiddle
a:link {
cursor: pointer;
color: Blue;
font-size: 12pt;
}
a:hover {
cursor: pointer;
color: Black;
font-size: 18pt;
}