0

是否有一种优质的方法来更新“link_to_remote”中的文本并保持链接正常运行?基本上我有两个链接:

  <%= 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),它设置为 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 回答