<input type='text' onblur="this.select()">

解决方案 »

  1.   

    1 首先 一个页面中 有个iframe,我要在启动页面时把焦点放到 iframe的 页面内。
    2 iframe 中是由几个div 组成的,我是由于键盘近控制 其焦点,想在 焦点 移到 某个 div 时,div 背景变色
    <div class="menu" style="background:" name="01">
    <table width="99%" border="0" cellspacing="0" cellpadding="0" align="center">
    </table>
    </div>
      

  2.   

    demo.htm<iframe src="in.htm"></iframe>in.htm<body onload="document.all.txt1.focus()">
    用Tab移动焦点
    <input type=text name=txt1 TABINDEX="1">
    <div onfocus="this.style.backgroundColor='red'"
         onblur="this.style.backgroundColor=''" TABINDEX="2">灰豆宝宝.net</div>
    <div onfocus="this.style.backgroundColor='red'"
         onblur="this.style.backgroundColor=''" TABINDEX="3">wanghr100</div>