我在网页上有两个选择框。一个显示月度报告,另一个显示已存档的月度报告。我想根据使用哪个选择框将值设置为“当前”或“已存档”。这就是我在这一点上所做的。
/GS
当我加载页面时,我想要的值不会出现在网页上。我有什么东西可以让这个值出现吗?
答案 0 :(得分:1)
使用ajax:
<div id="report">
</div>
并像这样修改脚本:
$(document).ready(function(){
$('#sMonth').change(function(){
$('#report').load('report.php?viewType=current');
});
$('#sReportURL').change(function(){
$('#report').load('report.php?viewType=archived');
});
});
和report.php:
$viewType = filter_input(INPUT_GET, 'viewType');
if($viewType == 'archived'){
echo $archivedReport;
}else{
echo $currentReport;
}