ai didi

javascript - 无法从 php echo 中的脚本更新 html 文本

转载 作者:行者123 更新时间:2023-11-30 14:46:48 24 4
gpt4 key购买 nike

我有这样的代码:

<?php
echo "<script> alert('hello world!!!'); </script>";
echo "<script> document.getElementById('updatetext').innerHTML='heyatest'; </script>";
?>

<html>
<head>
</head>
<body>
<p id="updatetext">Some Text Here</p>
</body>
</html>

我需要它以这种方式工作并通过 PHP 代码在特定点更新文本。在上面显示了警报弹出窗口,但我的文本没有更新为“heyatest”

最佳答案

您正在调用试图在该对象存在之前找到您的 id updatetext 的 javascript。它找不到它。在您要查找的 html 对象之后调用 php。

<html>
<head>
</head>
<body>
<p id="updatetext">Some Text Here</p>
</body>
</html>

<?php
echo "<script> alert('hello world!!!'); </script>";
echo "<script> document.getElementById('updatetext').innerHTML='heyatest'; </script>";
?>

关于javascript - 无法从 php echo 中的脚本更新 html 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48777755/

24 4 0
文章推荐: c# - Apache Ignite.NET SQL 不搜索非英文字符
文章推荐: c - 为什么我在删除节点时出现段错误?
文章推荐: c# - 为什么 AddAfterSelf 在与 SelectToken 一起使用时返回 'JProperty cannot have multiple values'?
文章推荐: c - ncurses 编译 : 'stdscr'/lib64/libtinfo. so.6:添加符号时出错
行者123
个人简介

我是一名优秀的程序员,十分优秀!

滴滴打车优惠券免费领取
滴滴打车优惠券
全站热门文章
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com