<script>
var_click_count=0;
$("body").bind("click",function(e){//直接给 body 一个事件好了.
//var n=Math.round(Math.random()*100);//随机数
var$i=$("<b>").text("+"+(++_click_count));//添加到页面的元素
varx=e.pageX,y=e.pageY;//鼠标点击的位置
$i.css({
"z-index":99999,
"top":y-15,
"left":x,
"position":"absolute",
"color":"red"
});
$("body").append($i);
$i.animate(
{"top":y-180,"opacity":0},
1500,
function(){$i.remove();}
);
e.stopPropagation();
});
</script>