如何在div中的同一页面上加载php表单提交

时间:2015-07-24 06:21:18

标签: javascript php html

我在php中有目录和搜索栏(katalog3.php),但其他文件中的功能(搜索栏funcioanliy是search_example.php和目录funconality是example_show_model_detail.php)现在它们显示在功能页面中....但我希望这个结果在具体div中显示(在katalog3.php中)(class =" results")。我怎么能得到它?

<form method="post" id="form1" action="example_show_model_details.php">
<button type="submit" form="form1" value="Submit">Submit</button>
</form>
<form  method="post" id="fname" action="search_example.php">
Wyszukaj<input type="text" name="duren" id="duren"><br>
<button type="submit" form="fname" value="Submit">Submit1</button>
</form>
</div>  
<div class="results">
</div>

1 个答案:

答案 0 :(得分:0)

从我正在阅读的内容看来,您似乎正在寻找一个将数据发送到另一个脚本并接收响应的ajax调用。如果您使用的是jquery,可以在此处阅读更多相关信息:http://api.jquery.com/jquery.ajax/。如果您不使用jquery,可能需要查看这篇文章:How to make an AJAX call without jQuery?