Questions tagged «jscript.net»

17
在标签索引中关注下一个元素
我试图根据具有焦点的当前元素将焦点移至选项卡序列中的下一个元素。到目前为止,我还没有找到任何搜索结果。 function OnFocusOut() { var currentElement = $get(currentElementId); // ID set by OnFocusIn currentElementId = ""; currentElement.nextElementByTabIndex.focus(); } 当然,nextElementByTabIndex是这项工作的关键部分。如何在标签序列中找到下一个元素?该解决方案将需要基于JScript,而不是基于JQuery。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.