本篇文章主要是對js設置文本框中焦點位置在最後的示例代碼進行了介紹,需要的朋友可以過來參考下,希望對大家有所幫助
在火狐浏覽器中直接使用this.focus();即可實現。 在IE中,在this.focus();之後再把文本框的值賦給文本框,焦點即在最後了。很簡單喲!! 如: 代碼如下: var tar=document.getElementByIdx_x("name"); if(tar.attachEvent){ tar.attachEvent('onmouseover',focus(tar),false); }else{ tar.addEventListener('mouseover',focus(tar),false); } function focus(tar){ tar.focus(); tar.value=tar.value; }