我有JavaScript函数,将一个参数传递给
<script type="text/javascript">
function myfun(var1)
{
var returnVal = "<?php echo get_value(); ?>";
}
</script>
我想将JavaScript变量var1
传递给get_value()
;
答案 0 :(得分:5)
你做不到。
PHP 在服务器端执行, Javascript 客户端。 这意味着, PHP 代码在 Javascript 之前执行。
但是,您可以使用AJAX从Javascript调用PHP函数。
您可以参考:how to pass the JavaScript variable to the php function
答案 1 :(得分:0)
试试这个:
PHP is executed server-side.
Javascript client-side.
It means, the PHP code is executed before the Javascript.
Here what you can do is to use jquery-ajax.
Inside that call a URL which returns variable you want.
Use that in result of ajax.