1

您可能会发现这个非常基本的问题,但我不知道如何在 rails 中编写此代码:

  <input type='image' src='http://images.aviary.com/images/edit-photo.png' value='Edit photo' onclick="return launchEditor('image1', 'http://images.aviary.com/imagesv5/feather_default.jpg');" />

我正在上传照片,需要使用上面的代码来编辑照片。

在这里我想使用这段代码:

<%= image_tag photo.object.avatar.url(:thumb), :class => "foodio_photo" unless f.object.new_record? or photo.object.new_record? %>

请帮忙!我是新手。

4

1 回答 1

0

首先,放置 onclick 的地方是在 javascript 文件中。也就是说,这应该有效:

"foodio_photo", :onclick => "doSomethingWith(this)") 除非 f.object.new_record? 还是 photo.object.new_record?%>
于 2013-06-08T03:14:38.333 回答