这里我从DB获取数据。它在html文件中工作,但不能通过单独的.js文件工作。
$(document).ready(function(){
$.post("class.php",{getdata:'true'},
function(result)
{
$('#class_incharge_id').html(result);
});
$.post('class.php',{check:'true'}, function(rslt)
{
$('#check').html(rslt);
});
});
答案 0 :(得分:0)
由于以下原因之一,可能导致无法工作:
可能您没有加入jQuery library
您可能忘记包含个人.js文件
或者您可能在jquery库之前包含了您的js文件。 You have to include .js file after jQuery library.
通过检查控制台是否存在错误,您将知道究竟是什么原因导致错误
答案 1 :(得分:0)
请检查您是否在编写代码的JS文件的引用之前包含了JQuery。因为它在你将它分成新的JS文件之前工作,这似乎是最可能的原因。