Javascript在文本框中单击Tab

Javascript onclick Tab into text box

本文关键字:单击 Tab 文本 Javascript      更新时间:2023-09-26

在文本框内单击时,会打开一个窗口。如果你把键盘上的选项卡按钮从另一个文本框用到有问题的文本框中,你如何得到同样的效果?

Javascript

<script language="JavaScript">
    function openwindow()
    {
    window.open('foo.php', 'newwindow', 'width=xxx,height=xxx,scrollbars=yes');
    }
</script>

HTML

<input name="test" id="test" type="text" onclick="location.href='javascript:openwindow()';" target="_blank" size="12">

尝试onFocus

<input name="test" id="test" type="text" onFocus="location.href='javascript:openwindow()';" target="_blank" size="12">