$("body *").live('mouseover', function() {
var currentId = $(this).attr('id');
var html = "<div id='perfect4' style='font-size:10px;'><div id='pos1'><br>ID: " +currentId+
" <br>Klasse: " +currentClass+ " </div><div id='pos' style='width:300px'></div></div>";
$("#perfect4").html(html).replacewith(html);
});
that works in ff because there is an error (replacewith
)
i know, replaceWith
would be correct
but without this, it would not work
that doesnt work:
$("#perfect4").html(html)
why?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…