我需要在使用tabindex
Struts JSP标记生成的html <select>
下拉菜单中设置<html:select>
属性。但是,它看起来不像此标记的tabindex
属性。有没有办法以某种方式添加它?
您始终可以使用JavaScript
或JQuery
将某些属性绑定到表单元素,这些元素使用一些不提供开箱即用属性的JSP标记进行呈现:
$("#id1").attr('tabindex', '2');
要么
document.getElementsByTagName("id1")[0].setAttribute("tabindex", "2");
编辑:
我在问题中看到你的编辑。所以你的select
标签实际上是来自struts
标签库。此标记确实提供tabindex
属性。看到这些struts docs。
好吧,看起来这个标签有一个tabindex。
https://people.apache.org/~germuska/struts-taglib/docs/tlddoc/html/select.html