我的页面上有许多图像。有些位于页面底部,需要滚动。我发现,当我点击图片时,它又变成了一个视频,它让我进入页面顶部。
这是我的代码:
$('#videoconner').click(function () {
$(this).replaceWith('<iframe width="280" height="164" src="http://www.youtube.com/embed/6kR2n4344UCAU?autoplay=1&cc_load_policy=1&rel=0" frameborder="0" allowfullscreen></iframe>');
});
我补充说:
e.preventDefault();
但这并没有帮助。
有没有办法阻止进入页面顶部?