我有一个外部文件js中选择数据的功能
function show_all() {
work = "select";
$.ajax({
type: "POST",
url: "server.php",
data: "work="+work,
success: function(data) {
$("#boxtop").html(data);
$('#boxtop').animate({
scrollTop: $('#boxtop').get(0).scrollHeight}, 0);
}
});
}
并在html索引中记录准备工作,但不在外部文件js中工作
$(document).ready(function(e) {
show_all();
});
答案 0 :(得分:0)
如果我理解正确,您需要将此行添加到index.html
<script type="text/javascript" src="yourscript.js"></script>
在head部分,在src中你应该放置一个到你的外部文件的路径