我不确定我在哪里出错了。
我有一个div
和一个button
。
点击button
,我正在尝试显示此.txt
中div
文件中的内容。
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
文件所在的文件夹中。
没有显示任何内容,也没有任何错误。