我的代码有问题,我想将 $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 定义之后启动一个 script 标签,并将下面的代码放入其中。
喜欢。

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/

10-13 23:23