我将如何创建一个在线编辑器,如W3School 的自己尝试编辑器?
我已经尝试过使用 JQuery 的keyup(); 功能,但我似乎无法让它工作。这是我到目前为止所拥有的:
<!DOCTYPE html>
<html lang="en">
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.1.1.min.js"></script>
<script type="text/javascript">
$("#idinput").keyup( function() {
$("#idoutput").html($("#idinput").val());
} );
</script>
</head>
<body>
<textarea id="idinput"></textarea>
<br>
<div id="idoutput"></div>
</body>
</html>
如果我犯了一些简单的错误,请告诉我。我对 JQuery 很陌生,这是迄今为止我用它写的最复杂的东西。
我意识到这可能以前曾被问过,但其他解决方案都没有奏效。提前致谢。