<script type="text/javascript">
$(document).ready(function(){
function listadepoimentos(page){
// $.get("ajaxes.php", {act:'listadepoimentos', page:page}, function a(b){$('#holder').html(b)}, "text");
$.ajax({
type: 'GET',
url: 'ajaxes.php',
data: {act:'listadepoimentos', page:page},
success: function(data){
//alert(data);
$('#holder').html(data);
},
error: function(xhr, type, exception){
alert("Error: " + type);
}
});
}
listadepoimentos(0);
});
</script>
除了一些IE8,它在所有浏览器上都可以正常工作。是的,有些。我尝试过各种各样的IE8浏览器,其中一些可以用,有些不行。
有合理的答案吗?