问题 :
两个span相互copy以后,focus不能设置了。比如说:
<span id=s1><input type="text" name="b" value="fadsfd"></span>
<span id=s2><input type="text" name="a" value="bbbb"></span>
<input type="button" οnclick="document.all.s1.innerHTML=document.all.s2.innerHTML;document.all.a[0].focus()">
焦点根本就设置不上,请指点一二。
原因:document.all.s1.innerHTML 复制需要时间的
解决:<input type="button" οnclick="document.all.s1.innerHTML=document.all.s2.innerHTML;setTimeout('document.all.a[0].focus()',100);">
===========================================================================