从php加载文本并发出警报 - 没有任何内容显示在警告框中

时间:2015-11-26 01:53:27

标签: javascript php jquery

我试图显示一些已从php文件加载并提醒它的文本。问题是警报框中没有任何内容。

JS:

$(document).ready(function(){
    $(".col-md-8").load('test.php');
    var pgmonth = $('.col-md-8').text();
    alert (pgmonth);
});

PHP(test.php):

<?php
    echo "Test";
?>

1 个答案:

答案 0 :(得分:0)

原因ajax(加载功能)未完成。

$(document).ready(function(){
        $(".col-md-8").load('test.php',function(){
             var pgmonth = $('.col-md-8').text();
             alert (pgmonth);
        });        
});