当您将光标放在文本区域上时,我试图激活或突出显示文本区域。 我哪里错了?
$focus('#contactForm').on('mouseenter mouseleave mouseup', function(e) {
$(this).toggleClass('Highlight');
$(this).css('cursor', 'pointer');
if (e.type == 'mouseup') {
$(this).text('X: ' + e.pageX + ' Y: ' + e.pageY);
}
});