我在Ruby on Rails中使用jeditable。
我想做的是点击一个按钮,所有字段的某一行成为可编辑的,并自动进入其可编辑状态。这可能吗?
这是我的java脚本<script>
jQuery(document).ready(function($) {
$(".edit_textfield").each( function() {
$(this).editable('<%= @student.id%>', {
indicator :'Saving...',
tooltip :'Click to edit...',
rows :10,
method :"PUT",
submitdata: {id: $(this).attr('id'),name: $(this).attr('name')}
});
});
});
</script>
这是展示页
<p>
<b><%=t :Name%>:</b>
<dd class="edit_textfield" id="<%= @student.id %>" name="name"><%= @student.name %></dd>
</p>
<p>
<b><%=t :Age%>:</b>
<dd class="edit_textfield" id="<%= @student.id %>" name="age"><%= @student.age %></dd>
</p>
<p>
<b><%=t :Address%>:</b>
<dd class="edit_textfield" id="<%= @student.id %>" name="address"><%= @student.address %></dd>
</p>
<p>
<b><%=t :Phone%>:</b>
<dd class="edit_textfield" id="<%= @student.id %>" name="phone"><%= @student.phone %></dd>
</p>
我想设置一个像
这样的按钮<button type="button" id="button1">Click this button and all the fields will become editable!</button>
通过点击这个我想让所有字段都可编辑
java script
$(".edit_trigger").bind("click", function() {
$(".edit_textfield").click();
});
按钮<button type="button" class="edit_trigger">Click this button and all the fields will become editable!</button>