<input id="myID" name="inputName" type="text" placeholder="Placeholder" maxlength="16">
<h3><?php echo $_POST['MCusername']; ?><h3>
我真正想要的是显示输入标签中输入的内容,立即放入h3标签。
抱歉,我还是PHP的新手。
答案 0 :(得分:0)
你需要JavaScript。你的PHP必须是这样的(粗略地):
<input id="myID" name="inputName" type="text" placeholder="Placeholder" maxlength="16" onchange="updateh3()" onkeyup="updateh3()">
<h3 id="myh3"><h3>
<script type="text/javascript">
var h3 = document.getElementById('myh3');
function updateh3(ev) {
h3.innerHTML = ev.target.value;
}
</script>
答案 1 :(得分:0)
以下示例使用JQuery。
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<script>
$(function() {
$( "#myID" ).keyup(function() {
$("#typedID").html( $(this).val() );
});
});
</script>
<input id="myID" name="inputName" type="text" placeholder="Placeholder" maxlength="16">
<h3 id="typedID"><h3>