详细页属性介绍添加步骤
注意:[ ]中括号里的规格名称、链接、自定义名称请替换为用户您自己的数据,规格名称要区分大小写,请注意填写。
<script>
var product_property_name_link = [['Color','https://www.shopyy.com','Header Fabrication'],['Size','https://www.shopyy.com','Measuring Guide'],['abc','https://www.shopyy.com','Measuring 123']];
if(typeof(product_property_name_link)!="undefined" && product_property_name_link.length>0)
{
$.each(product_property_name_link, function(i, j){
$('.sale_property_box').each(function(index, element) {
var pro_property_name = $(this).attr('property_name');
if(j[0] == pro_property_name){
$(this).siblings('dt').append('<a class="property_name_introduction" style="margin-left:20px;color:blue;font-weight:normal;text-decoration:underline;" href="'+ j[1] +'">'+ j[2] +'</a>');
}
});
});
}
3、前台商品详情页效果见下图,点击自定义文字后会自动跳转到链接页面