我的 index.php 中有这段代码:
$('#whois').click(function () {
//console.log("button clicked");
$('#whois_content').html("");
$('#fade').fadeOut('slow', function () {
urlLinkas();
});
});
我想在这个脚本中将一个 post 值传递给 test.php,如下所示:
$('#whois').click(function () {
//console.log("button clicked");
$.ajax({
type: "POST",
url: "test.php",
data: info,
success: function(){
//dont know what to write here
}
$('#whois_content').html("");
$('#fade').fadeOut('slow', function () {
urlLinkas();
});
});
然后在 test.php 中调用这个 post 值$_POST['info']
也许有人会明白我在说什么。