gpt4 book ai didi

javascript - 将 php 变量回显到 innerhtml

转载 作者:可可西里 更新时间:2023-11-01 07:49:44 26 4
gpt4 key购买 nike

我的代码有问题,我想将 $meaning 变量放入我的 di 的 innerhtml 中,这是我的代码:搜索输入.php:

<form action = "search.php" method = "post">
<input name="word" id="word" type="text" maxlength="255" />
<label for="word">word:</label></br></br>
<input type="submit" value="search" />

</form>
<div id = "meaning"> </div>

搜索.php:

<?php
$db = mysql_connect("localhost", "root", "");
mysql_select_db("project",$db);
$word = isset($_POST["word"]) ? $_POST["word"] : "";
$result = mysql_query("select meaning from vocabulary where word = '$word'");
$fetchmeaning = mysql_fetch_array($result);
$meaning = $fetchmeaning['meaning'];
?>

现在我想要这个:

document.getElementById('meaning').innerhtml = $meaning; !!!!

我该如何实现?

最佳答案

是的。在 $meaning 的定义之后开始一个脚本标签并将以下代码放入其中。喜欢。

document.getElementById('meaning').innerHTML = "<?PHP echo $meaning; ?>" ;

难道你不能直接回显 $meaning 的值吗?在div里面甚至不使用 javascript?喜欢

<div id = "meaning"><?PHP echo $meaning; ?></div>

您也可以使用缩写形式 <?=$meaning?> .

关于javascript - 将 php 变量回显到 innerhtml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19883228/

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