gpt4 book ai didi

php - 从 php 调用 javascript 函数

转载 作者:可可西里 更新时间:2023-11-01 12:27:10 26 4
gpt4 key购买 nike

我正在尝试从 php 调用 javascript 函数。根据我一直在查看的所有示例,以下内容应该有效,但事实并非如此。为什么不呢?

 <?php
echo "function test";
echo '<script type="text/javascript"> run(); </script>';
?>

<html>
<script type="text/javascript">
function run(){
alert("hello world");
}
</script>
</html>

最佳答案

您的 html 无效。你缺少一些标签。

你需要在函数声明后调用它,就像这样

<html>
<head>
<title></title>

<script type="text/javascript">
function run(){
alert("hello world");
}

<?php
echo "run();";
?>
</script>

</head>
<body>
</body>
</html>

在这种情况下,您可以将运行放在方法声明之前,但是只要您将方法调用包装在另一个脚本标签中,脚本标签就必须在方法声明之后。

自己试试 http://jsfiddle.net/qdwXv/

关于php - 从 php 调用 javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12812842/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com