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.
我想隐藏和显示图像,但它不适用于移动 safari。show() 调用后仅显示图像的 css 边框。(它适用于所有普通浏览器,此错误仅在移动 Safari 中)当我注释掉 hide() 调用时,图像正确加载。有人能帮我吗?
$(function() { $('.module_imgs').hide(); $('.module_btn').click(function() { $('.module_imgs').show(); }); });
好的,我将 div 元素设为空并使用 appendChild 来显示我的图像。不是我想要的解决方案,但它确实有效。