解决IE与FF 中 input focus 光标移动在最后的方案
window.setTimeout("moveCursor('"+id+"');", 50) ;function moveCursor(id){?var id = document.getElementById(id);?id.focus();?var r=id.createTextRange();?r.collapse(false);?r.select();????? }
?