Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户单击按钮时,应该会弹出一个输入框,询问一些详细信息。这一切都有效,除了输入框显示为最小化或没有焦点。
var = InputBox("enter something") ListBox1.Items.Add(var)
我一直在寻找答案,但没有找到任何答案……那么,关于如何使输入框突出显示的任何想法?
我们看不到为了正确回答您的问题而可能需要查看的大部分代码,但是您是否尝试过使用 jQuery 的 focus 方法?如果您的输入框(或者可能是 ASP.NET 文本框控件?谁知道呢?)具有类“myInputBoxClass”,那么您可以像这样关注客户端:
function focusBox(){ $('.myInputBoxClass').focus(); };