JavaScript Text Kutusundaki Yazıyı Div İçine Aktarma

N

Nazdravia

Ultra Member
Joined
Aug 1, 2019
Messages
606
Reaction score
164
JavaScript:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>TEXT KUTUSUNA GİRİLEN YAZIYI DİV İÇİNE YAZDIRMA</title>
</head>
<style>
 
</style>
 
<body>
 
<input type="text" id="yazi" value="">
<div id="goster"></div>
 
<script>
var yazi=document.getElementById("yazi");
var goster=document.getElementById("goster");
 
yazi.onkeyup=function(){
 
goster.innerHTML=yazi.value;
}
</script>
</body>
</html>
 
SPAM IS FORBIDDEN!
  • SPAMMERS ARE BANNED FROM THE FORUM AND CANNOT USE ANY OF THE CHEATS
  • For example: thanks, thx, very good, asdqwe, working, ty and so on!
  • For example: Writing the same message over and over. thanks, thx and so on!
  • Copying and copying someone else's message is prohibited.
  • It is forbidden to send messages to increase the number of comments on threads that you have no knowledge of.
  • Write your own opinion when commenting!
  • If you see spam message, please let us know with the REPORT button!

Tema düzenleyici

Top Bottom