假设我有 php 页面 index.php
<?php
$x=$_POST[sent] // I get some value in #x
?>
<html>
<head>
<script>
function getVar()
{
var x= <How to fetch $x from php code>
alert(x);
}
</script>
</head>
<body>
<button type="submit"> click </buttton>
</body>
</html>
如何在getVar(_)
函数中获取 $x?或者另一种情况,一些变量在 JS 中,然后将其放入 php 代码中?
有没有可能?
实际上我有 index.php 并通过 ajax 请求加载新页面 url.php。我想向 url.php 发送一些变量,并希望在其中的 JS 代码中访问它们。
这是我的ajax请求:
var id=mydata.id; // Guess I am getting some data here
$.ajax({
url:'url.php'
,async: true
,cache: false
,dataType: 'html'
,success: function(data){
$('body').html(data);
FB.XFBML.parse();
}
我想向id
url.php 发送 ajax 请求。我将获取它$x
并希望在 JS 代码中使用它。