我想获得 html 页面的“打印值”。
我尝试了以下查询,但 showGetResult() 只返回“空值”
但是当我尝试这段代码时,我打印了我的 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>