什么意味着您从 phpMyAdmin 获取数据?您可以从 php 文件中获取它,该文件实际上从数据库中获取信息。这通常看起来像:
根据您的帖子更改:
PHP:
$id=$_POST['id'];
$ret = mysql_query("select * from table where id='" . $id . "'");
echo mysql_fetch_array($ret);
die();
jQuery:
$("#link").click(function(){
$.ajax({
type: "POST",
url: "file.php",
data: "id="+$("selector#for.id"),
success: function(data)
{
//append your data here. e.g.
body.html=data.key;
}
});
});
来自您的链接的样本
$.ajax({
type: 'POST',
url: 'js/db.php',
dataType: 'json',
data: "id=" + this.id },
success: function(data){
if (data[0]=='showe1'){
$('#' + data).avgrund({
openOnEvent: false,
height: 270,
width:350,
template: '<div class="topic">' + data[1] + '</div>'+
'<div class="clr"></div>'+
'<div class="intro">'+data[2]+'</div>'+
'<div class="clr"></div>'+
'<div>' +
'<a href="#" target="_new" class="b2 lfloat">Register</a>' +
'<a href="#" target="_new" class="b2 rfloat">More</a>' +
'</div>'
});
}
我传递了这些参数并将 param 更改为 function from id
to data
,以使其成为标准。这是你需要看的吗?