从表单文本字段中检索值,并使用RJS在另一个表单文本字段设置该值



我使用的是RubyonRails 3,我想从表单文本字段中检索一个值,并使用RJS在另一个表单文本字段中将该值设置为如下(或以更好的方式!):

update_page_tag do |page|
  page.event.observe('text_field1_css_id', 'keyup') do |element|
    element << ... # Get and set a '@variable' value using the value in the 
                   # HTML textarea tag with id = 'text_field1_css_id'. The 
                   # '@variable' value should be accessible from the
                   # 'element.replace_html' method stated below
    element << ...
    ...
    element.replace_html (:text_field2_css_id), @variable.inspect
  end
end

如何使用Prototype框架做到这一点

在原型中:

// /public/application.js
$('text_field_1_css_id').observe('keyup',function(event){
   $('text_field2_css_id').setValue($F(event.element));
});

对于其他可能感兴趣的人,如果你使用jquery,你可能可以使用:

// /public/application.js
$('#text_field_1_css_id').keyup(function(){
   $('#text_field2_css_id').value($(this).value());
});

相关内容

  • 没有找到相关文章

最新更新