关于获得input里的value值的问题
假设有一个标签
<input type="text" id="one" >
执行代码,网页里会有一个文本框可以输入,
我在里面输入内容:我是菜鸟
那这段值是属于input的 value值吗?
用documentGetElementByID ("one")该如何获得“我是菜鸟”这个字符串??
假设有一个标签
<input type="text" id="one" >
执行代码,网页里会有一个文本框可以输入,
我在里面输入内容:我是菜鸟
那这段值是属于input的 value值吗?
用documentGetElementByID ("one")该如何获得“我是菜鸟”这个字符串??
2018-04-24
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<input type="text" id="one" name="one">
<script type="text/javascript">
function hh(){
document.getElementById("result").value = document.getElementById("one").value;
}
</script>
<input type="button" name="two" value ="输出" onClick="hh()">
<input type="text" name="onee" id = "result">
</body>
</html>
举报