嗨,我有 5 个产品标签,我想要更改单击的标签的背景图像,例如,如果单击产品 1,则背景图像应更改为background-image:url('/images/product1-selected')
,类似地,如果选择产品 2 为背景产品 2 的图像应该是background-image:url('/images/product2-selected')
,但在这种情况下,产品 1 图像应该转到上一个图像,因为选择了产品 2。我想一次显示一个选择的图像,因此例如,如果选择了产品 2,则所有其他产品都应转到每个标签样式中定义的默认图像,反之亦然
<label for="1" style="background-image:url('/images/product1');width:50px;height:49px;">Product 1</label>
<label for="2" style="background-image:url('/images/product2');width:50px;height:49px;">Product 2</label>
<label for="3" style="background-image:url('/images/product3');width:50px;height:49px;">Product 3</label>
<label for="4" style="background-image:url('/images/product4');width:50px;height:49px;">Product 4</label>
<label for="5" style="background-image:url('/images/product5');width:50px;height:49px;">Product 5</label>
关于如何使用 jquery 获得这个的任何想法。任何帮助将不胜感激谢谢