我的代码中有问题,我想将$含义变量放入我的di的innerhtml中,这是我的代码: searchinput.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>
的search.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; !!!!
我怎么能阻止这个?
答案 0 :(得分:7)
是。在$meaning
的定义之后启动脚本标记并将下面的代码放入其中。
等。
document.getElementById('meaning').innerHTML = "<?PHP echo $meaning; ?>" ;
您是否还想到在$meaning
内直接回显div
的价值而不使用javascript?像
<div id = "meaning"><?PHP echo $meaning; ?></div>
您也可以使用简短格式<?=$meaning?>
。
答案 1 :(得分:1)
<div id="errorMessage"></div>
<?php
if (isset($_GET['q'])) {
echo '<script type="text/javascript">
document.getElementById("errorMessage").innerHTML = "User name or Password is incorrect";
</script>';
}
?>