<script><BR>$(document).ready(function(){<BR> $(".taDetail").bind("click",showNum)<BR> .bind("keyup", showNum)<BR> .bind("blur", function(){$("#divShowNum").hide();});<BR>});<BR>var showNum = function(){<BR> var d = $(this);<BR> var pos = d.offset();<BR> var t = pos.top + this.offsetHeight - 22; // 弹出框的下边位置<BR> var l = pos.left + this.offsetWidth - 60; // 弹出框的右边位置<BR> var num = this.value.length;<BR> $("#changeNum").html(num);<BR> $("#divShowNum").css({ "top": t, "left": l }).show();<BR>}<BR></script>
/140