实际上我是 javascript 的新手,我想在另一个 textarea 中显示写在一个 textarea 中的文本。
我确实提到了同时将文本从一个文本区域写入另一个文本区域的问题
我在 jsfiddle 中看到了它,但我不明白如何合并这段代码。
到目前为止,我已经走了这么远:
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
</head>
<body>
<script src="text/javascript">
$(document).ready(function() {
// put your Javascript here
$('.one').on('keydown', function(event){
var key = String.fromCharCode(event.which);
if (!event.shiftKey) {
key = key.toLowerCase();
}
$('.two').val( $(this).val() + key );
});
});
</script>
<textarea class="one"></textarea>
<textarea class="two"></textarea>
</body>
</html>
我不明白是什么问题。