<script src="../easyui/jquery.min.js"></script>
<script>
$(function () {
$("img").mouseenter(function () {
img = $("<img />").attr("src", $(this).attr("src")).width(300).height(300)
.css({ "position": "absolute", "left": $(this).position().left + "px", "top": $(this).position().top + "px" })
.appendTo($("#TableID tbody").first()).mouseout(function () {
$(this).remove();
});
});
});
</script>