关于javascrip网页输出的问题
看看下面的代码,为什么在网页上无法打印输入的字符串啊?<html>
<body>
<input type="text" name="put" id="In" />
<button onclick="myfunction()">点击这里</button>
<script>
function input()
{
var text="";
text=document.getElementById("In").value;
document.getElementById("demo").innerHTML=text;
}
</script>
<p id="demo"></p>
</body>
</html>