将javascript字符串传递给PHP变量

时间:2014-05-17 14:36:10

标签: javascript php

我有一个JS变量:

var str = "hello world";

我怎样才能将这个JS变量str传递给像$str = this JS variable这样的PHP变量?

echo $str; //output "hello world"

2 个答案:

答案 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请求,您也可以打印输出