0
我使用插件的版本1.4.13,我也確保頁面已成功加載插件。jQuery scrollTo插件不工作
它曾經在我的網站上正常工作,但現在看起來什麼都不做。我使用下面的代碼來運行它:
HTML:
<span class="button-project-info">
<a class="button button-04" href="#project-info">Project Info</a>
</span>
CSS:
$('.button-project-info a').bind('click', function(e) {
try {
e.preventDefault();
target = this.hash;
$('html, body').scrollTo(target, 150);
} catch (error) {
alert('error - ' + error);
}
});
我也試過以下,和alert
語句運行正常時,鏈接點擊:
$('.button-project-info a').bind('click', function(e) {
alert('0000');
});