我的网站上有PHP联系表格。当表单成功发送时,Echo会发出一条消息“谢谢等等”,但它出现在主文档上方页面的顶部。
如何为此回显消息指定DIV?
由于
答案 0 :(得分:2)
我只能假设你的问题是什么。我无法发表评论,所以我的回答是我认为你的问题是:
echo "<div id='yourIdName'>";
echo $_POST['stuff'].'textext';
echo "</div>";
现在你可以改变你的css:
#yourIdName{
color: red;
}
答案 1 :(得分:0)
echo '<div class="your css style">'.$_POST['formfield'].'</div>';
答案 2 :(得分:0)
<br>
<div style="width:200px;height:100px;color:red;background-color:green;">
<?php
echo $message; //wherever you write this echo , message will be displayed //there.
?>
</div>
答案 3 :(得分:0)
<?php $message ="Thank you"; ?>
<div id="msg"></div>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
var str ='<?php echo $message?>';
$( "#msg" ).html( str );
</script>
using div id you can add your style.