代码之家  ›  专栏  ›  技术社区  ›  Salil

灯箱在进入时多次打开

  •  0
  • Salil  · 技术社区  · 14 年前

    我在使用时遇到了一个奇怪的问题 lightbox

    无论何时使用新的灯箱,用户都可以打开相同的灯 框在同一页上的次数。例如

    Using tab button go to `Lightbox link`.
    Press enter --> Light box will open.
    Press enter --> second light box open below the previous one.
    and so on.......
    

    enter .

    <a href = '/calenders/add_shipment' onclick ="this.blur()" class='lbOn'>
       <img src='/images/box-plus.png' style='border:none;'>
    </a>
    

    我该怎么做才能摆脱这一切。

    1 回复  |  直到 14 年前
        1
  •  0
  •   Salil    14 年前

    我使用隐藏文本字段中的设置焦点来完成。如下

    <script type="text/javascript" language="JavaScript">
      document.getElementById('set_focus').focus();
    </script>
    
    <div style="display:none;"><input type="text" size="20"  id="set_focus"/></div>