我在 PHP 有一些条件,如果是真的,我需要 php 变量来获取 javascript 函数: 类似的东西:
<?php
if(x == true){
$x = <script type="text/javascript">xfunction();</script>;
}
?>
我真的不知道如何让它们组合在一起。
我在 PHP 有一些条件,如果是真的,我需要 php 变量来获取 javascript 函数: 类似的东西:
<?php
if(x == true){
$x = <script type="text/javascript">xfunction();</script>;
}
?>
我真的不知道如何让它们组合在一起。
要在渲染文档时调用函数onloadecho
.. 你可以只输出一个自执行函数。
<?php
// your other code
if( $x ) { // no need to check if true... this will fail if falsey
echo "<script>";
echo "(function() { xfunction(); }());"; // I will execute when the parser hits me
echo "</script>";
}
// or (after reading your comments above)
if( $x ) {
$x = "";
$x .= "<script>";
$x .= "(function() { xfunction(); }());"; // I will execute when the parser hits me
$x .= "</script>";
}
// somewhere else in the document....
echo $x;
或者如果您尝试将值从 javascript 传递到 php,您将需要使用 HTTP 请求变量(POST、GET)或 XHR...
XHR 示例:
var request = new XMLHttpRequest();
request.open('POST', 'http://www.somepage.com/foo.php', true);
request.send('data=somedata');
if (request.status === "200") {
console.log(request.responseText);
}
并在 php 端访问它$_POST['data']
<?php
if($x){
print '<script type="text/javascript">xfunction();</script>;';
}
?>
如果我理解你的问题,应该有效吗?