0

我有一个 if/else 语句,用于检查 DOM 中显示的图像最初是否小于 600px 宽,如果是,它将所述图像调整为不同的宽度。但是,有时 div 类 .tagmap 不会出现。仅当存在 if/else 语句时才会发生这种情况。知道为什么会发生这种情况吗?我已经生成了这个 jsfiddle。步骤 2 中的第一张图像和步骤 4 中的图像都应该附加 .tagmap

jQuery if/else 语句

$('span.i_contact').each(function() {    
var imgWidth = $(this).data('img-width');    
if (imgWidth < 600) {
    var newWidth = ((imgWidth / 600)*300);
    console.log(newWidth);   
    $(this).css({
        "width":newWidth
    });    
} 

else{    
    var pos_width = ($(this).data('pos-width')) / 2.025;
    var pos_height = ($(this).data('pos-height')) / 2.025;
    var xpos = ($(this).data('pos-x')) / 2.025;
    var ypos = ($(this).data('pos-y')) / 2.025;
    var taggedNode = $('<div class="tagged" />')
    taggedNode.css({
        "border":"5px solid orange",
        "width":pos_width,
        "height":pos_height,
        "left":xpos,
        "top":ypos
    });
}  
var n = $(this).data('index');
$('.i_tagmap' + n).append(taggedNode);

});

$("span.o_contact").each(function() {    
var imgWidth = $(this).data('img-width');
if (imgWidth < 600) {
    var newWidth = ((imgWidth / 600)*300);
    console.log(newWidth);   
    $(this).css({
        "width":newWidth
    });    
}    

else {
    var pos_width = ($(this).data('pos-width')) / 2.025;
    var pos_height = ($(this).data('pos-height')) / 2.025;
    var xpos = ($(this).data('pos-x')) / 2.025;
    var ypos = ($(this).data('pos-y')) / 2.025;
    var taggedNode = $('<div class="tagged" />')
    taggedNode.css({
        "border":"5px solid green",
        "width":pos_width,
        "height":pos_height,
        "left":xpos,
        "top":ypos  
    });
} 
var n = $(this).data('index');
$('.o_tagmap' + n).append(taggedNode);       
});

ERB(如何生成图像)

<div class="stepcontainer">
<div class="steptext">
    <%= step.instruction %>
</div>
<div class="modalbutton">
    <%= render(step.flags.new) %>   
</div>


<% if step.input_contact.present? %>
    <span class="i_contact i_contact<%= n %>" data-pos-x="<%= step.i_connection.pos_x %>" data-pos-y="<%= step.i_connection.pos_y %>"  data-pos-width="<%= step.i_connection.pos_width %>" data-pos-height="<%= step.i_connection.pos_height %>" ="spanid<%= n %>" data-img-width="<%= step.i_connection.image.dimensions.first %>" data-index="<%= n %>"></span>   
    <div class="productimg">    
        <div class="image_panel<%= n %>" style="float:left; width:600px; position:relative;">   
            <%= link_to image_tag(step.i_connection.image.image.url(:medium), class: "iconnection" ), "#{step.i_connection.image.image.url(:large)}", class: "fancybox" %>
            <div class="i_tagmap<%= n %>"></div>
        </div>      
    </div>

    <% if step.i_connection.cord? && !step.o_connection.dongle? %>
        <div class="cableimg">
            <%= image_tag(step.i_connection.cord_type.image.url(:thumb), :class => "orange")  %>
        </div>
    <% end %>           
<% end %>   <!-- end of step.input_contact.present -->

<% if step.o_connection.cord? && !step.o_connection.dongle? %>
    <div class="cableimg">
        <%= image_tag(step.o_connection.cord_type.image.url(:thumb), :class => "green") %>
    </div>      
<% end %>
<span class="o_contact o_contact<%= n %>" data-pos-x="<%= step.o_connection.pos_x %>" data-pos-y="<%= step.o_connection.pos_y %>"  data-pos-width="<%= step.o_connection.pos_width %>" data-pos-height="<%= step.o_connection.pos_height %>" id="spanid<%= n %>" data-img-width="<%= step.o_connection.image.dimensions.first %>" data-index="<%= n %>"> </span>
<div class="productimg">
    <div class="image_panel<%= n %>" style="float:left; width:600px; position:relative;">
        <%= link_to image_tag(step.o_connection.image.image.url(:medium), class: "oconnection"), "#{step.o_connection.image.image.url(:large)}", class: "fancybox" %>
        <div class="o_tagmap<%= n %>"></div>
    </div>  
</div>              

4

1 回答 1

1

.data("img-width")错了,应该是.data("imgWidth")

http://api.jquery.com/data

在您的代码中多次出现相同的错误,例如.data("pos-width")

于 2013-08-07T23:45:51.843 回答