促销!

Sphero Nubby Cover

原价为:¥14.40。当前价格为:¥7.20。

分类:

Nubby Cover

Blue

Orange

Yellow

Kick fun into high gear with the Nubby Cover for BOLT+ and BOLT robots. Featuring a textured surface, this cover provides extra grip and enhances traction. While protecting against scratches and scuffs, the Nubby Cover offers additional control to help your robot navigate various terrains.
Note: The use of a Nubby Cover will obstruct the BOLT+/BOLT display.

// Shared SKU Map
var skuMap = {
‘ANC01BL1’: {
title: ‘vtitle01’,
subtitle: ‘vsub01’,
description: ‘vdescr01’,
included: ‘vwhats01’
},
‘ANC01OR1’: {
title: ‘vtitle02’,
subtitle: ‘vsub02’,
description: ‘vdescr01’,
included: ‘vwhats01’
},
‘ANC01YE1’: {
title: ‘vtitle03’,
subtitle: ‘vsub03’,
description: ‘vdescr01’,
included: ‘vwhats01’
},
// Add more mappings as needed
};

// Update title based on SKU
var skuTitleElement = document.querySelector(‘.product-meta__sku-number’);
var titleElement = document.querySelector(‘.product-meta__title’);

function updateTitleBasedOnSKU(skuMap) {
var skuNumberTitle = skuTitleElement.textContent.trim();

if (skuMap.hasOwnProperty(skuNumberTitle)) {
var divId = skuMap[skuNumberTitle].title;
var divContent = document.getElementById(divId);

if (divContent) {
titleElement.textContent = divContent.textContent.trim();
var inlineStyles = divContent.getAttribute(‘style’);
titleElement.setAttribute(‘style’, inlineStyles);
divContent.style.display = ‘block’;
}
}
}

updateTitleBasedOnSKU(skuMap);

// Update subtitle based on SKU
var s

评价

目前还没有评价

成为第一个“Sphero Nubby Cover” 的评价者

您的邮箱地址不会被公开。 必填项已用 * 标注

滚动至顶部