0

表格由提交select_tag

<%= select_tag :next_status, options_from_collection_for_select(@next_select_list, :id, :name, @next_status_id), { :onchange => "this.form.submit();" } %>

重新加载表单时,如何添加锚点#selectbox以跳转到 <a name="selectbox"> . </a>附近。select_tag

4

2 回答 2

0

像这样使用slideTo()插件是一种选择:

$('#selectBox').slideto({
    target : '#test',
    speed  : 0
});
于 2012-04-18T03:09:25.957 回答
0

提交表单后,页面会重新加载。因此,如果您想导航到某个锚点,请将其包含在 URL 中(即在服务器上进行)。

于 2012-04-18T03:31:46.840 回答