-1

这是我的程序附加到我的每个订单的代码。我需要它只运行一次。我已经尝试过其他类似帖子的提示,但由于某种原因它不适用于我的代码

<script language="javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
    jQuery(function (){
        var product_code;
        jQuery('td[width="12%"][align="left"]').before('<td><b>Image</b></td>');    
        jQuery('td[width="7%"][align="right"]').remove();
        jQuery('td[width="8%"][align="right"]').remove();
        jQuery('td[width="12%"][valign="top"]').each(function(){
            product_code = jQuery.trim(jQuery(this).text());
            var product_code_fix = product_code.replace(/\//g, "-fslash-");
            jQuery(this).before('<td width="12%" valign="TOP" bgcolor="#f9f9f9"><img border="0" alt="' + product_code + '" title="' + product_code + '" src="/v/vspfiles/photos/' + product_code_fix + '-0.jpg"></td>');
        });
    });
</script>
4

1 回答 1

0

OP 询问的是一个脚本,当管理员打印客户订单时,该脚本会在装箱单上添加产品图像。上面的代码不是为了通过批量打印将图像添加到装箱单而编写的,因此这就是为什么 OP 让脚本运行的次数与他在批量中的订单一样多。

你只需要设置一个简单的标志来阻止它。

<script language="javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
if (typeof runcheck === 'undefined'){
    var runcheck ='run';
    $(function (){
        var product_code;
        var product_code_fix;
        $('td[width="12%"][align="left"]').before('<td><b>Image</b></td>');
        $('td[width="7%"][align="right"]').remove();
        $('td[width="8%"][align="right"]').remove();
        $('td[width="12%"][valign="top"]').each(function(){
            product_code = $.trim($(this).text());
            product_code_fix = product_code.replace(/\//g, "-fslash-");
            $(this).before('<td width="12%" valign="TOP" bgcolor="#f9f9f9"><img border="0" alt="' + product_code + '" title="' + product_code + '" src="/v/vspfiles/photos/' + product_code_fix + '-0.jpg"></td>');
            $('img').error(function(){$(this).hide();});
        });
    });
}

于 2015-05-09T23:19:03.823 回答