我有一个数据属性 id="Phone System" 的超链接
<a id="Phone System" class="push" href="#">test</a>
我想用 get/post 方法在 div id="drop1" 中加载一个 php 文件
<div>
<div id="drop1"></div>
<div id="drop2"></div>
</div>
这是 ajax 代码,数据 id="Phone System" 将被发送到 php 文件 dropcategory.php
$(function(){
$('.push').click(function(){
var id = $(this).attr('id');
$.ajax({
type : 'get',
url : 'dropcategory.php',
data : 'cat='+id,
success : function(r)
{
$("#drop1").show();
}
});
});
});
这是 php 文件 dropcategory.php
require ('connect.php');
$cat = $_GET['cat'];
//some query operation
我不知道如何显示具有确定参数的 php 文件