当我使用脚本使用 ajax 从特定 url 获取内容时,不显示我的 HTML 内容,即不显示我的表格元素:我从特定 url 获取数据并将其显示在警报框中,并且还document.write
用于在页面上写入来自我调用的 url 的数据:
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a4.min.css" />
<script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a4.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.ajax({
type:"POST",
url:"http://your url",
success: onSuccess,
error:onError
});
});
function onSuccess(data){
var servertext=data;
document.write(servertext);
alert(servertext);
}
function onError(data){
alert(data+'error');
}
</script>
</head>
<body>
<p> hello</p>
<table height="150px" weight="150px" border="1px">
<tr>
<td><img src="green.png" height="100px" width="100px" /></td>
</tr>
</table>
enter code here