我有一个带有这样div
标签的页面
<div class="ajax-load">
<!-- First.php: jquery-slider-1
jquery-widget-1
second.php: jquery-slider-2
jquery-widget-2
-->
</div>
像button
这样
<button class="go-to-page-2">
当我单击时,button with class go-to-page2
我需要将一些 php 页面加载four.php and five.php
到里面或里面div with class ajax-load.
使用 plain markup
,我可以很容易地像这样放置它
<?php
require_once("four.php");
require_once("five.php");
?>
但我不想要这个。我想load contents into the div using ajax.
我试过这个:
$(".ajax-load").load("4.php")
但不能使用这个加载或附加 5.php。如何克服这一点?我准备好使用了$.get and $.post