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