所有 这有什么问题..
jQuery(function() {
var $tooltip = jQuery('<div class="tooltip">You can mention..?</div>');
jQuery('.link-class:first').live("hover", function() {
jQuery(this).before($tooltip);
},
function() {
jQuery(this).before($tooltip).remove();
});
});