ruby on rails-从jQuery迁移到Prototype(代码片段)



我使用的是RubyonRails 3,我正在从jQuery迁移到Prototype,但我是第一个JavaScript框架的新手,所以我遇到了一些麻烦。我想写以下原型代码的jQuery版本:

  page.select("#test_id").each do |element|
    element.replace( "Test text )
  end

我该怎么办?代码是什么

$('#test_id').html('Test text');

$('.test_class').each(function(){
    $(this).html('Test text');
});

相关内容

  • 没有找到相关文章

最新更新