0
如何將唯一用戶標識「erb表達式」傳遞給jquery函數。在Jquery中識別的唯一ROR用戶ID erb表達式
即
這
<div id="expand_<%= user.id %>"><%= image_tag user.avatar.url(:medium), :class => "expand round fluid" %></div>
<div id="collapse_<%= user.id %>" class="collapse"><%= user.bio %></div>
這個
<script type="text/javascript">
$(document).ready(function() {
// Hide the "view" div.
$('div.collapse').hide();
// Watch for clicks on the "slide" link.
$('div#expand_' + user.id).click(function() {
// When clicked, toggle the "view" div.
$('div#collapse_' + user.id).slideToggle(100);
return false;
});
});
</script>
謝謝,非常感謝。
是的,把它放進去,它工作
– mrharrison 2010-12-20 00:48:24