我确信我的问题是我在 jquery 和 javascript 方面缺乏经验的结果。我正在尝试使用自动滚动 jquery 插件。当我单击应该激活滚动的链接时,我只是盯着我看。有人可以帮忙吗?这就是我所拥有的:我已经在标签
中调用了相关的脚本。
在我的身体标签的末尾,我有这个:head
<script type="text/javascript">
$(document).ready(function() {
$("a.hello").click(function () {
$("#text").autoscroll("toggle", {
start: {
step: 50,
scroll: true,
direction: "down",
pauseOnHover: true
},
delay: 5000,
ffrw: {
speed: "fast",
step: 100
}
});
});
});
</script>
然后,我尝试使用锚触发脚本,如下所示:
<a href="#" class="hello">start/stop</a>
div
我想“在悬停时暂停”的 id是“文本”。
该插件的源代码和说明可在此处找到。谢谢。
编辑:
根据表单选择从其他文件调用一些 html 并将其放入<div id="text"></div>
.
function clickMe() {
var book = document.getElementById("book").value;
var chapter = document.getElementById("chapter").value;
var myFile = "'files/" + book + chapter + ".html'";
$('#text').load(myFile + '#source')
}