我正在尝试使用Ariel Flesler的jquery scrollTo插件进行水平滚动,但无法使滚动工作(插件和jquery包含在头部)。这是相关的HTML:
<div id="main-content">
<div id="quiz-wrapper">
<div class="quiz" id="question-first">
<h5 class="quiz-question">What is the capital of X?</h5>
<div class="quiz-answer"><a
title="$(...).scrollTo( '#share-first', 800 );" href="#">Answer</a>
</div>
</div>
<div class="quiz" id="share-first">
<div class="points-message">
<h3>+75 for every Tweet and Like</h3>
</div>
</div>
</div>
</div>
相关造型:
div#main-content {
width: 570px;
}
div#quiz-wrapper {
width: 3000px;
overflow: hidden;
}
div.quiz {
width: 520px;
margin-left: 100px;
float: left;
}
以下是该插件的链接:http://flesler.blogspot.com/2007/10/jqueryscrollto.html。知道scrollTo调用有什么问题吗?
答案 0 :(得分:0)
您尝试将javascripting应用于title
属性。您可能打算将其应用于onclick
属性。