将javascript var传递给ajax加载

时间:2017-09-24 19:13:42

标签: javascript ajax variables

所以我做一个ajax加载来加载我的网站上的PHP文件。但是我需要将变量“needednumber”传递给这个php文件。我该怎么做?我将如何在php文件中打开它?

Class.getDeclaredConstructor(...).newInstance(...)

2 个答案:

答案 0 :(得分:1)

你好,你可以试试这个:

$.ajax({
   type: "GET",
   url: "<?php echo get_template_directory_uri(); ?>/deletefavorite.php?choices=<?php echo $description; ?>",
   success: function(result){
     $('#ajax').html(result);
   }
 });

$.ajax({
   type: "GET",
   url: "<?php echo get_template_directory_uri(); ?>/deletefavorite.php",
   data: {choices: '<?php echo $description; ?>'},
   success: function(result){
     $('#ajax').html(result);
   }
 });

答案 1 :(得分:0)

我得到了它的工作。我用以下方法做到了:

$.ajax({
                           type: "GET",
                           url: "<?php echo get_template_directory_uri(); ?>/deletefavorite.php",
                           data: {choices: pass},
                           success: function(result){
                             $('#ajax').html(result);
                           }
                         });

                }