0

「link_to_remote」内のテキストを更新し、リンクを機能させたままにする高品質の方法はありますか?基本的に私は2つのリンクを持っています:

  <%= link_to_remote "(#{building.charts.size} Charts)",{:url => {:action => "update_chart_matrix", :chartable_type => "building",:chartable_id => building.id, :title => building.name},
    :update => 'chart-matrix',
}
%>

...と...

<%= link_to_remote "Add Chart",{:url => {:action => "add_chart_for_chartable", :chartable_type => "building",:chartable_id => building.id},
    :update => 'other_link', #really not sure about this part as I only want to update the Chart Count in the other link
}
%>

リンク内のHTMLを単純に置き換えるのは簡単ですが、その機能を「壊す」ことはしたくありません。何か案は?

ありがとう。

4

1 に答える 1

1

リンクの内部 HTML を更新しても、onclick機能が損なわれることはありません。プロトタイプで (Rails 経由で) update を使用しています。これは innerHTML を設定します。

update: function(element, content) {
  element = $(element);
  if (content && content.toElement) content = content.toElement();
  if (Object.isElement(content)) return element.update().insert(content);
  content = Object.toHTML(content);
  // This sets innerHTML, it doesn't destroy the object
  element.innerHTML = content.stripScripts();
  content.evalScripts.bind(content).defer();
  return element;
},

戻ってきたコンテンツがaタグ内での使用に適している限り、問題はありません。

幸運を!

于 2009-07-23T12:36:07.213 に答える