如何将控制/光标移动到另一个文本框

发布于 2024-10-14 12:30:29 字数 156 浏览 1 评论 0原文

我有一个页面,您首先输入客户 ID,然后点击提交。此时它将验证客户,如果有效,则返回同一页面以输入报价编号。最初,quotenumber 字段将呈灰色且无法编辑。我的问题是,返回页面后,我需要光标转到“报价编号”文本框而不是客户 ID 文本框(目前它转到客户 ID 文本框)。我该如何解决这个问题?

I have a page where you enter customer-id first and hit submit. That point it will validate the customer and if valid, comes back to the same page to enter quote number. Initially quotenumber field will be grayed out and can not be edited. My question is, after it comes back to the page, I need the cursor to go to the "quote number" text box instead of customer-id text box (currently it goes to customer-id text box). How can I solve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

堇年纸鸢 2024-10-21 12:30:29

使用 javascript 的 focus() 函数或 jQuery

use javascript's focus() function or jQuery

逆流 2024-10-21 12:30:29

在 jquery 中它会是

 $("#myinput").focus();

in jquery it would be

 $("#myinput").focus();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文