我正在尝试将 PHP 脚本的输出加载到使用 JavaScript 和 JQuery 中。我正在使用的 JavaScript 函数使用 JQuery 中的 $.get 函数来调用我想在另一个分区中显示的 php 脚本。我写的脚本是:
<script type="text/javascript">
function on_load() {
$(document).ready(function() {
alert('here');
$.get("http://localhost/dbtest.php", function(data){
alert('here too too');
$("uname").html(data);
});
});
}
</script>
PHP 脚本 (dbtest.php) 使用简单的 echo 语句:
echo "hello, world!!!";
我在这里收到第一个警报,但不是第二个。我在这里做错了什么?