我正在对使用Ektron的网站上的一些响应式编码进行测试,对于你们所有的Ektron向导,但我注意到的问题是私有模式。我们使用一种名为Share This的东西,允许即时社交媒体共享,但是有两个图标用于Facebook,一个用于Twitter,这些图标隐藏,就像JS被阻止一样,因为CSS仍在页面上显示每个类。
为什么在Firefox中以私密模式阻止它?
未经剥离的代码版本:
<div class="event_social">
<a href="javascript:void(0)" class="st_sharethis_custom" st_via="website" st_processed="yes">Share</a>
<span class="st_facebook" st_via="website" st_processed="yes"><span style="text-decoration: none; color: rgb(0, 0, 0); display: inline-block; cursor: pointer; padding-left: 0px; padding-right: 0px; width: 16px;" class="stButton"><span class="chicklets facebook"> </span></span></span>
<span class="st_twitter" st_via="website" st_processed="yes"><span style="text-decoration: none; color: rgb(0, 0, 0); display: inline-block; cursor: pointer; padding-left: 0px; padding-right: 0px; width: 16px;" class="stButton"><span class="chicklets twitter"> </span></span></span>
<span class="st_email" st_processed="yes"><span style="text-decoration: none; color: rgb(0, 0, 0); display: inline-block; cursor: pointer; padding-left: 0px; padding-right: 0px; width: 16px;" class="stButton"><span class="chicklets email"> </span></span></span>
</div>
代码的剥离版本:
<div class="event_social">
<a href="javascript:void(0)" class="st_sharethis_custom" st_via="website">Share</a>
<span class="st_facebook" st_via="website"></span>
<span class="st_twitter" st_via="website"></span>
<span class="st_email"></span>
</div>
之前有人遇到过这样的问题吗?