任何人都可以帮我下面的代码。这是倒计时,它在我的网站上运作良好,但我不希望它链接回滴答计数器网站。有什么方法可以阻止它链接回任何其他网站吗?
任何帮助都将受到高度赞赏,谢谢!
<div class="tcw" data-id="Countdown-38213" style="position: relative; display: inline-block; margin: 0 auto; width: 100%">
<a href="//www.tickcounter.com/countdown/38213/flash-sale" title="Flash Sale">Flash Sale</a>
<a href="//www.tickcounter.com/" title="Countdown">Countdown</a>
</div>
<style>
.tcw:after {
content: "";
display: block;
margin-top: 25%;
}
</style>
<script>
(function(d, s, id) {
var js, pjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "//www.tickcounter.com/static/js/loader.js";
pjs.parentNode.insertBefore(js, pjs);
}
(document, "script", "tickcounter-sdk"));
</script>
答案 0 :(得分:0)
您尝试做的事情并不那么道德,但如果您想要的话,请删除以下内容。
<a href="//www.tickcounter.com/" title="Countdown">Countdown</a>
修改强>
所以,我在JSFiddle上搞砸了它,我想出了这个。 尝试使用jQuery在延迟时添加css。
$('.counter-wrapper')
.delay(800)
.queue(function (next) {
$(this).css('pointer-events', 'none');
next();
});