function getTime()
{
var date = new Array(
<?php
$date1 = date("Y-m-d, H:i");
echo "new Array(\"".$date1."\")";
?>);
//document.write(date[0]);
return date[0];
}
function showmychart() {
max_time = getTime();
min_time = getMintime(max_time);
//document.write(max_time);
//delete myChart;
var c_channel = channel;
myChart = new Drawchart(max_time, min_time,c_channel);
myChart.showChart();
}
function changeSBS(){
channel = 'sbs';
showmychart();
}
function changeKBS2(){
channel = 'kbs2';
showmychart();
}
</script>
</head>
<body>
<center>
<div id = "header">
</div>
<div id="middle">
<input type = "button" id ="before" onclick="showBeforeChart();" value = "Before">
<object id="chart"></object>
<script class="code" id="Drawchart" type="text/javascript">showmychart();</script>
<input type = "button" id ="after" onclick="showAfterChart();" value = "After">
</div>
<div id = "channel_position">
<input type = "button" id ="before" onclick="changeSBS();" value = "aaa">
<input type = "button" id ="before" onclick="changeKBS2();" value = "bbb">
このコードでは、aaa ボタンまたは bbb ボタンをクリックすると、関数 getTime() を使用して関数 shomychart() の max_time を更新したいと考えています。ここで、ボタン aaa をクリックしても bbb が更新されない場合、getTime() 関数が呼び出されないか、getTime() 関数が機能しないと思います...どうすればこの問題を解決できますか?? ??