如何在ajax的外部javascript文件中使用php变量?

时间:2011-04-26 18:19:05

标签: ajax

基本上,我想通过ajax在外部Js文件中使用php变量。例如:

在example.php文件中

<?php 
$a="123"
//and then I want to call a show() function through a onclick event later
<xxxxxxxxxxxxx......  onclick="show()">;
?>

在另一个example2.js文件中有一个函数

show()
{
  var b
  // I want to assign $a's value to this variable b here.=> b=a

  //but I only want to do this way by using ajax.

}

有人可以告诉我该怎么做吗?感谢。

1 个答案:

答案 0 :(得分:0)

您是否尝试将ajax_object.responceText插入a中的值,然后使用javascript获取它?