我创建了一个CQ表单,在此表单下是我的列控件(2列)。 在列控件内部,我有像select1 - >这样的表单元素。 select2 - > title1 - >标题2
现在,当我在预览或发布实例中运行此页面,并按下元素中的tab键时,它将变为Select1 - > title1 - > select2 - > TITLE2。
我想控制标签按此处,因为它按照select1 - select2 - title1 -title2
任何观点?
答案 0 :(得分:0)
您需要在每个表单元素上使用tabindex属性,如下所示:
col1:
<input type="text" name="title1" tabindex="1">
<select name="select1" tabindex="2">...</select>
col2:
<input type="text" name="title2" tabindex="3">
<select name="select2" tabindex="4">...</select>