你好朋友我是开发新手我的第一个项目,我想知道如何在运行时在div中显示输入字段数据,就像在stackoverflow问题部分一样,请建议我最好的框架,我只知道jQuery,这就是我想在JQuery中开发它的原因。请帮帮我。
<html>
<body>
<input type="text" class="form-control" name="fname">
<div>Want to show input text here on run time</div>
</body>
答案 0 :(得分:0)
尝试这样的事情:
<html>
<head>
<style>div{display:none;}</style>
</head>
<body>
<input type="text" class="form-control" name="fname">
<div>Want to show input text here on run time</div>
</body>
<script>
// Put your event handler here on which you want to show this div
getElementsByTagName("div").css("display", "block");
</script>
</html>