我正在尝试在我的rails项目中使用best_in_place gem,并希望编辑文本,直到用户双击它。请问有什么方法吗?我只知道它可以通过简单的点击完成,但双击呢? 谢谢你的帮助。
在我的代码下面: 的 JS
$( document ).ready(function() {
jQuery(".best_in_place").best_in_place();
});
查看
<% @products.each_with_index do |p, index| %>
<h4> <%= best_in_place p, :label, :type => :input %> </h4>
<% end %>