22

我有一个大 div:

.limeskin:hover {
  background: #eee;
  cursor: pointer;
  display: block;
}

我想被点击。因为我使用的是 Rails,所以我需要一个 Rails 链接是可点击的:例如

<%= link_to 'Edit Your Email Address', edit_user_path %>

我正在为此苦苦挣扎。

这是整个块:

<% @user.posts.each do |post| %>
     <div class="lists">
      <ol class="limeposts">
       <li>
        <div class="limeskin">
          <div class="limebox">
            <div class="limecost">
              <b>Price:</b>
              <%= number_to_currency(post.price, :unit => "R") %><br>
              [...]
<% end %>

任何简单的法律可行的答案?

谢谢

4

3 回答 3

54

link_to可以接受一个块:

<%= link_to root_path do %>
  <div>Hey!</div>
<% end %>

<a>这将用标签包围 div 。

文档:http ://apidock.com/rails/ActionView/Helpers/UrlHelper/link_to

或者,如果您有一个大 div 并希望使其“可点击”,请使用 jQuery:

# html.erb
<div class="limeskin">
  <div class="limebox">
    <div class="limecost">
      <b>Price:</b>
      <%= number_to_currency(post.price, :unit => "R") %><br>
      #[...]
    </div>
  </div>
</div>

# jQuery.js
$('.limeskin').click( function(event) {
  var clicked_div = $(this);
  # do stuff with the event object and 'this' which 
  # represent the element you just clicked on
});

jsFiddle:http: //jsfiddle.net/Lxw34w5o/1/

于 2013-06-25T18:07:13.580 回答
1

使用 javascript(我推荐 jQuery)使动作真正发生,并使用 CSShover选择器来修改 div 背景和光标(将光标从箭头更改为手形)。

于 2013-06-25T19:27:35.233 回答
1

即使您有一个包含多个标签的大块,如下使用 Link_to 就足够了:

<%= link_to desired_path do %>
    <div class="linkable">
        <another div>
             ... some other tags
        </another div>
    </div>
<% end %>

我建议您为鼠标悬停事件使用不同的背景颜色,因为它向查看者显示它是一个链接!

在你的 .css 文件中:

.linkable:hover{
    background-color: red;

}
于 2016-04-15T06:15:03.277 回答