怎么利用java web编写一个输入框和一个按钮,点击按钮弹出一个对话框,显示你刚才在输入框输入的内容?
可选中1个或多个下面的关键词,搜索相关资料。也可直接点“搜索资料”搜索整个问题。
- 输入框
- 对话框
- java
- web
- 按钮
- 搜索资料
1 2 3 4 5 6 7 8 9 10 | <script type= "text/javascript" >
function send(){
var txt = document.getElementById( "input" );
alert(txt.value);
}
</script>
<body>
<input type= "text" id = "input" ></input>
<button id = "send" onclick= "send();" >提交</button>
</body>
|