0

我只是注意到我的链接在 jquery 事件发生后不起作用......我想做的是使 div 更大并交换内容。事件发生后,Rails link_to 和渲染“表单”停止工作......我该如何解决这个问题,如果你知道为什么会这样,你会解释为什么?

jQuery代码

jQuery(document).ready(function(){
jQuery(".readmore").on('click',function(event){
    event.preventDefault();
    var $id = $(this).attr("id");
    var $target_id = "#post-"+$id; 
    var $long = ".long-"+$id;
    var $short = ".short-"+$id;
    jQuery(".flex-cube").toggle(
        function () {
            jQuery($target_id).animate({marginRight: 0,width:"490px" }, 1000, "easeInOutQuad")
        },
        function () {                
            jQuery($target_id).animate({marginRight: 0,width:"490px" }, 1000, "easeInOutQuad")                   
        }  
    );    
    jQuery($target_id).addClass(".extended");
    jQuery($long).fadeIn(1000);
    jQuery($short).fadeOut(1000);
    return;
});

});

HTML & RoR 代码

<div class="flex-cube rounded-corner white-bk">
    <div id="form"><%= render 'form' %></div>
</div>
<% @microposts.each do |post|%>
    <div id="post-<%= post.id%>" class="flex-cube rounded-corner white-bk">
        <h5 class="black_bk white_font tenpx-padding"><%= post.username %></h5>
        <spam>
            <%= image_tag(post.image_url(:thumb)) if post.image?%>
            <% if post.posts.length > 250 %>
                <div class="short-<%=post.id%> active"><%= post.posts.slice(0..250)%>
                    <div id="<%= post.id%>" class="readmore button small post-<%= post.id%>">[-- Read More --]</div>
                </div>
                <div class="long-<%=post.id%> inactive">
                    <%= post.posts%>
                </div>

            <% else %>
                <div class="short-<%=post.id%> active"><%= post.posts%></div>
            <%end%>
        </spam>
4

1 回答 1

0
event.preventDefault();

该行防止发生默认操作。请参阅此问题以获得很好的解释:event.preventDefault() 与 return false

于 2013-01-25T01:19:36.713 回答