document.ready()不起作用

时间:2014-09-09 05:30:35

标签: jquery

这里我从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);
    });
});

2 个答案:

答案 0 :(得分:0)

由于以下原因之一,可能导致无法工作:

  1. 可能您没有加入jQuery library

  2. 您可能忘记包含个人.js文件

  3. 或者您可能在jquery库之前包含了您的js文件。 You have to include .js file after jQuery library.

  4. 通过检查控制台是否存在错误,您将知道究竟是什么原因导致错误

答案 1 :(得分:0)

请检查您是否在编写代码的JS文件的引用之前包含了JQuery。因为它在你将它分成新的JS文件之前工作,这似乎是最可能的原因。