我有一个JS变量:
var str = "hello world";
我怎样才能将这个JS变量str
传递给像$str = this JS variable
这样的PHP变量?
echo $str; //output "hello world"
答案 0 :(得分:0)
<script type="text/javascript">
var str = 'hello world';
</script>
<?php
$roo = " <script type=\"text/javascript\">
document.write(str) ;
</script>";
echo $roo; // will print hello world
?>
编辑:
或使用AJAX获取javascript变量。
答案 1 :(得分:0)
你可以将它添加到回发事件中,并在你的php中从发布的数据中读取它
使用xhr请求,您也可以打印输出