私はhtmlページの '印刷された値'を取得したい。jquery ajax戻り値を取得
私は、クエリの下にしようとしたが、showGetResult()は単に「null値」
を返すが、私のApacheサーバのログは、私はこのコードをしようとしたとき、私はindex.phpのアクセス印刷。
(index.phpを単に印刷のHelloWorld)
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"><\script>
<script type="text/javascript">
function showGetResult(name)
{
var result = null;
jQuery.ajax({
url: 'http://localhost/index.php',
type: 'get',
dataType: 'text/html',
success:function(data)
{
alert(data);
result = data;
}
});
return result;
}
document.write(showGetResult('test'));
</script>