如何使用jQuery加载将.txt文件中的内容显示到div中?

时间:2015-04-29 18:16:56

标签: jquery html

我不确定我在哪里出错了。 我有一个div和一个button

点击button,我正在尝试显示此.txtdiv文件中的内容。

HTML:

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
    <div id='abc'>AA</div>
    <button id='bt'>Submit</button>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>

JS:

$('#bt').click(function() {
    $('#abc').load('hello.txt');
})

'hello.txt'文件位于.html文件所在的文件夹中。

没有显示任何内容,也没有任何错误。

0 个答案:

没有答案