这里非常沮丧。不能让它工作,也不知道为什么。我正在尝试用另一个 html 文件中的 div 填充我的 div。这是我的代码:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<div id="text">
content goes here
</div>
<script type="text/javascript">
function whenButtonClicked() {
var book = document.getElementById("book").value; //this is working
var chapter = document.getElementById("chapter").value; //this is working
var filename = 'files/' + book + chapter + '.html'; //this is working
$('#text').load(filename #source); //this is NOT
}
</script>
谢谢你的帮助。
亚当
编辑:这是我正在处理的实际文件的链接。它也可能有问题。