Сообщение от Doc_Emmett Brown
|
введенное в инпут должно отобразится так <span id='text'>введенное в инпут</span>
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='https://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function(){
$('input').on('input',function(){
$('#text').text(this.value);
})
});
</script>
</head>
<body>
<input type='text' />
<span id='text'>введенное в инпут</span>
</body>
</html>