我试图显示一些已从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";
?>
答案 0 :(得分:0)
原因ajax(加载功能)未完成。
$(document).ready(function(){
$(".col-md-8").load('test.php',function(){
var pgmonth = $('.col-md-8').text();
alert (pgmonth);
});
});