我正试图显示使用JavaScript制作的该编辑器的内容,但我被卡住了...有什么帮助吗?我在这里以及编码方面都是新手,所以请非常感谢您的帮助。这是我的表单示例...
<!DOCTYPEhtml>
<head>
</head>
<body>
<form action="create.php" method="post">
<input type="text" name="title" /><br />
<iframe name="content" id="t_editor" ></iframe><br />
<input type="submit" value="create" name="create" />
</form>
<script>
window.addEventListener("load", function() {
var myeditor = content.document;
myeditor.designMode = "on" ;
}
)
</script>
</body>
</html>
然后创建create.php
<?php
if(isset($_POST['create']) ){
$t = $_POST['title'];
$c = $_POST['content'];
echo $t .'<br />'. $c;
}
?>