0

所以我创建了一个 erb 块来获取每个图像标签的坐标,我想在其中显示每个图像在所述坐标处的标签。但是,只显示一个标签,而不是迭代中的每个标签。知道为什么吗?它与.each() 有关吗?

<% if @new_manual.present? %>
<% @new_manual.steps.each do |step| %>
<% i_connection = Contact.find(step.input_contact) %>
<span class="i_connection" data-pos-x="<%= i_connection.pos_x %>" data-pos-y="<%= i_connection.pos_y %>"  data-pos-width="<%= i_connection.pos_width %>" data-pos-height="<%= i_connection.pos_height %>"> </span>  
<br>
<div class='image_panel'>
    <%= image_tag(i_connection.image.image.url(:large)) %>
<div class='planetmap'></div>


<% end %>
<% end %>
</div>

<script type="text/javascript">
$(document).ready(function(){
$("span.i_connection").each(function() {
    var pos_width = $(this).data('pos-width'); 
    var pos_height = $(this).data('pos-height');
    var xpos = $(this).data('pos-x');
    var ypos = $(this).data('pos-y');

    $(".tagged_box").css("display","block");
    $(".tagged").css("border","5px solid red");

    if ((xpos !== undefined) && (ypos !== undefined)) {
    console.log('X:' + xpos + 'px' + ' ' + 'Y:' + ypos +'px');         
        $('.planetmap').append('<div class="tagged"  style="width:'+pos_width+'px;height:'+
        pos_height+'px;left:'+xpos+'px;top:'+ypos+'px;" ><div class="tagged_box" style="width:'+pos_width+'px;height:'+
        pos_height+'px;display:none;" ></div>')
         }
});   //END OF SPAN.CONNECTION ITERATION
});

编辑 所以我将 id 更改为 classes,现在标签显示在每张照片上。成功!然而,它仍然显示他们两个,而不是他们受人尊敬的标签。我认为这与 .each() 方法有关。

编辑 #2 最新代码

该块遍历 2 个图像。现在 .tagged 显示在两张图像上,而不是每个受尊重的图像一个标签

<div class="container">
<% if @new_manual.present? %>
<% @new_manual.steps.each do |step| %>
    <% i_connection = Contact.find(step.input_contact) %>

<span class="i_connection" data-pos-x="<%= i_connection.pos_x %>" data-pos-y="<%= i_connection.pos_y %>"  data-pos-width="<%= i_connection.pos_width %>" data-pos-height="<%= i_connection.pos_height %>"> </span>
<br>
<div class="image_panel">
    <%= image_tag(i_connection.image.image.url(:large)) %>
        <div class='planetmap'></div>
</div>
    <script type="text/javascript">
    $(document).ready(function(){
$("span.i_connection").each(function() {
    var pos_width = $(this).data('pos-width');
    var pos_height = $(this).data('pos-height');
    var xpos = $(this).data('pos-x');
    var ypos = $(this).data('pos-y');

    $(".tagged_box").css("display","block");
    $(".tagged").css("border","5px solid red");

    // if ((xpos !== undefined) && (ypos !== undefined)) {
    // console.log('X:' + xpos + 'px' + ' ' + 'Y:' + ypos +'px');         
        $('.planetmap').append('<div class="tagged"  style="width:'+pos_width+'px;height:'+pos_height+'px;left:'+xpos+'px;top:'+ypos+'px;" ><div class="tagged_box" style="width:'+pos_width+'px;height:'+
            pos_height+'px;" ></div>')
         // }
});   //END OF SPAN.CONNECTION ITERATION
});
</script>   

<% end %>   
<% end %>

4

2 回答 2

0

从您提供的代码中很难了解最终生成的 HTML 的样子,但跳出的一个错误是您span有一个类,"i_connection"而您的 jQuery 选择器正在寻找一个具有"connection". 这实际上应该导致.each()根本不运行,所以这可能不是你的全部问题。

于 2013-07-21T22:44:54.210 回答
0

我在您的代码中看到的几个问题:

  1. 您正在设置<span class="i_connection"但使用$("span.connection").each(function() {Jason 已经指出的。
  2. 你有多个divs相同的idieimage_panelplanetmap. ids 在整个 DOM 文档中应该是唯一的。

要解决第一个问题,您应该更改您$("span.connection").each(function() {的使用正确的类,即

$("span.i_connection").each(function() {

我假设您希望image_paneldiv 仅显示<% if @new_manual.present? %>评估结果是否为真。这解决了重复id问题之一。对于第二个重复的 ids on planetmap,我再次假设您希望它在我看到<% @new_manual.steps.each do |step| %>的代码之外。JS请按如下方式更新您的 erb,看看这是否是您想要的:

<% if @new_manual.present? %>
  <div class='image_panel'>
    <% @new_manual.steps.each do |step| %>
      <% i_connection = Contact.find(step.input_contact) %>
      <span class="i_connection" data-pos-x="<%= i_connection.pos_x %>" data-pos-y="<%= i_connection.pos_y %>"  data-pos-width="<%= i_connection.pos_width %>" data-pos-height="<%= i_connection.pos_height %>"> </span>  
      <br>

      <%= image_tag(i_connection.image.image.url(:large)) %>
    <% end %>
    <div id='planetmap'></div>
  </div>
<% end %>
于 2013-07-21T22:55:19.017 回答