0 0

rials中select下拉菜单的跳转问题5

要在rails中实现select下拉菜单选择变化的时候自动发生跳转是不是只能用Ajax通过onchange完成?如以下代码:

<%= select (:topic_display, :id, @topicCollection.map{|t| [t.name,t.id]},
{:prompt=>'All', :include_blank => true},
:onchange => remote_function (:update => 'Test', :method=> 'get', :with => "'id=' + value + '&partial=testselect'", :url => {:action => :select_with_ajax})) %>

是否可以用其方式来实现?多谢指教!
2008年6月26日 09:34

1个答案 按时间排序 按投票排序

0 0

你直接用HTML的调转菜单阿
<script type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->
</script>
</head>

<body>
<form name="form1" id="form1">
    <select name="menu1" onchange="MM_jumpMenu('parent',this,0)">
        <option value="URL">unnamed1</option>
    </select>
</form>

2008年6月28日 11:01

相关推荐

Global site tag (gtag.js) - Google Analytics