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.
我在 MVC 中制作了一个表单并包含了选项卡。所以我想重定向到不在默认选项卡中的按钮 lcik 上的文本。那我该怎么做
Write some jquery:
$('#buttonId').click(function(){ $('#textboxtofocusId').focus(); })