請參閱下面的代碼。目標如下。當用戶按下按鈕時,應執行功能main.php
。一旦完成,DIV opt_container
的內容應通過運行功能ganttchart.php
填寫。確實我不知道如何:填充DIV容器
- 執行
ganttchart.php
之後main.php
之後。從form
運行main.php
。
由於我是PHP新手,任何建議都會對我很有幫助。
<div id="fragment-2">
<table width="100%">
<tr>
<td width="100%">
<form name="optform" method="post" action="">
<div class="buttons">
<a href="" class="regular" onclick="click_function();return false;">
<img src="images/opt.png" alt=""/> Run optimizaton
</a>
</div>
</form>
</td>
</tr>
</table>
</div>
<div id="opt_container">
</div>
<script language="javascript">
function click_function() {
$('#opt_container').load('optim/mainOptim.php');
}
</script>
請問您可以發佈一些網頁鏈接的例子嗎? –
http://www.howtoplaza.com/how-to-make-ajax-calls-with-jquery http://net.tutsplus.com/tutorials/javascript-ajax/5-ways-to-make- ajax-calls-with-jquery/ 並查看google的其他結果:https://www.google.pl/search?sourceid=chrome&client=ubuntu&channel=cs&ie=UTF-8&q=how+to+make+ajax+call + with + jquery – Zefiryn
請查看更新的主題。我期待'main.php'的內容在DIV opt_container中顯示,儘管它不能以這種方式工作。什麼可能是錯的? –