click_function_ps()
関数が実行されたらDIVコンテナを更新するコードを書きました。しかし、私のコードは機能しません。それは言う:
missing ; before statement
var newHTML = "<img class="displayed" src="ganttchart.php">";
だから、どこに置く必要があり;
ますか?
<div class="buttons">
<a href="#" class="regular" onclick="click_function_ps(); replaceContent();">
<img src="images/opt.png" alt=""/> Run </a>
</div>
<div id="opt_container">
<table width="100%">
<tr>
<td width="100%">
<div class="scrollbar" id="chart">
<img class="displayed" src="ganttchart.php">
</div>
</td>
</tr>
</table>
</div>
<script type="text/javascript">
function replaceContent() {
var newHTML = "<img class="displayed" src="ganttchart.php">";
document.getElementById("scrollbar").innerHTML = newHTML;
}
</script>