我需要的是位对我来说更复杂,但对于许多人来说将是容易..
这里是我想要的东西,在我的形式,我有3个对象,文本框,提交按钮和显示区域。
用户必须输入在文本框的一些细节,并按下提交按钮,细节都显示在显示区(展示盒),这是下面。显示细节后,文本框必须是空的。用户不能或不应该编辑显示区域的细节。
以下是我试过,
它非常基本的HTML +的Javascript。反正这里的代码:)
<html>
<head>
<script>
function display()
{
document.getElementById("displayarea").innerHTML = document.getElementById("myinput").value;
document.getElementById("myinput").value = "";
}
</script>
</head>
<body>
<input type="text" name="myinput" id="myinput">
<input type="button" value="Submit" name="submit" id="submit" onClick="display()"/>
<div id="displayarea">Sample Text. This data will disappear if you press button</div>
</body>
</html>
//view.php
<?php
if (isset($_POST['submit'])
{
$text = $_POST['text1'];
echo $text;
echo "<br />";
}
echo "<form action= '' method='post'>
Text Box: <input type='text' name='text1' />
<input type='submit' name='submit' />
</form>";
?>