在我的php网站上,我需要在从数据库中提取数据时显示文本消息 我的代码在Mozilla中运行。但它在IE 8中不起作用。我搜索了很多,但没有结果。 看我的代码
<script type="text/javascript">
function LoadData(zone,city,cat,datein,dateout,room,adult,child,form,searchhot){
$("#LoadingMsg").show(1000);
$("body").load(hotel-search?frmZone='+zone+'&frm_city='+city+'&frm_category='+cat+'&datepickerIn='+datein+'&datepickerOut='+dateout+'&frm_room='+room+'&frm_adult='+adult+'&frm_child='+child+'&formpage='+form+'&searchHotel=1', function(){
$("#LoadingMsg").hide(1000);
});
}
</script>
<body onload="javascript:LoadData('<?=$_REQUEST['frmZone']?>','<?=$_REQUEST['frm_city']?>','<?=$_REQUEST['frm_category']?>','<?=$_REQUEST['datepickerIn']?>','<?=$_REQUEST['datepickerOut']?>','<?=$_REQUEST['frm_room']?>','<?=$_REQUEST['frm_adult']?>','<?=$_REQUEST['frm_child']?>','<?=$_REQUEST['formpage']?>','<?=$_REQUEST['searchHotel']?>')">
<div id="LoadingMsg"> <h2>Almost there...</h2><br />
</div>
有人知道吗?
请回复
提前致谢