菜鸟教程 tryjsref_button_value 在线代码实例

运行 保存 全屏 右侧展示 实时查看
主题:

 <input type="button" id="button1" value="Click Me!">

<p>The text on the button is: 
<script>
document.write(document.getElementById("button1").value);
</script></p>