将焦点设置在文本框上
我有一个用于销售的小型 ASP.net Web 应用程序,当加载“进行新销售”页面时,我希望条形码的文本框处于焦点位置,以便用户不必导航到它并单击它输入条形码,我该怎么做?
PS:我使用的是 Visual Web Developer 2010 和 VB.net。
I have a small ASP.net web app for sales, when the "Make New Sale" page loads, I want the TextBox for the Barcode to be in focus, so that the user doesn't have to navigate to it and click it then enter the Barcode, how can I do that?
PS: I am using Visual Web Developer 2010 and VB.net.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在隐藏代码中执行此操作,也可以直接在页面上的 JavaScript 中执行此操作。要在隐藏代码中执行此操作,只需调用控件上的
Focus()
方法:要在 JavaScript 中执行此操作,请创建一个选择文本框并调用其
.focus()< /code> 方法,并在页面的
onLoad
事件中调用该函数:You can do this either in your code behind, or directly in JavaScript on your page. To do it in your code behind, just call the
Focus()
method on the control:To do it in JavaScript, create a function that selects the textbox and calls its
.focus()
method, and call the function in the page'sonLoad
event: