Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在阅读另一个用户关于如何使用复选框将图像分层的问题。
在大多数情况下,我能够遵循提供的答案,但是我仍然面临原始海报所遇到的问题。出于某种原因,图像正在相互替换,而不是相互叠加。
Jquery:如何将图像叠加在一起?
我猜初始代码的总体思路是使用div id="aluminum"并div id="aluminum"在最顶层定义为重叠图像的占位符。
div id="aluminum"
你总是在使用$('#shirt').html(html);。
$('#shirt').html(html);
那就是问题所在。
$('#shirt').html(html);不断更换图像。因此,在某一情况下,您只看到一张图像。
但是,如果您可以在此处详细解释您要对代码执行的操作,我可以帮助您创建它。