我使用的是ruby on rails,我有一个表单,其中有一个文本字段、两个下拉字段和一个文本区域。
但是在firefox中,文本字段中的一个选项卡会将我带到下一个文本区域。它跳过中间的选择框。下一个标签带我到顶部的导航URL栏,它完全跳过了“提交”按钮。
这是我的视图代码。在哈姆,但你知道。
= form_for(note, {:html => {:class => 'note record'}}) do |f|
= hidden_field_tag(:page_id, @page.altid)
%table.form{:cellspacing => 5,:cellpadding => 5}
%tr
%th Title
%td= f.text_field :title
%td.col3= f.select :title_font_size
%tr
%th Body
%td
= f.text_area :note_body
%td.col3
= f.select :note_body_converter, %w(Basic Markdown)
%tr.submit
%th
%td{:style => 'width:500px;'}
.buttons
= f.submit 'Add this note', :class => 'psubmit'
or
= link_to 'Cancel', '#', :class => 'cancel'