<body>
<input type="text" id="t" value="shang" />
</body>
<script type="text/javascript">
var input=window.document.getElementById("t");
alert(input.value);
</script>
BOM对象之Document
最新推荐文章于 2023-07-11 15:02:05 发布
<body>
<input type="text" id="t" value="shang" />
</body>
<script type="text/javascript">
var input=window.document.getElementById("t");
alert(input.value);
</script>