我使用的是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');
});