開啟附有文字輸入欄的對話框
window.prompt 可開啟附有文字輸入欄的對話框
程式碼如下:
<script>
function Event1(){
var input = window.prompt("Please input your name");
window.alert(input);
}
</script>
<input type="button" value="Press to start" onclick="Event1()">
執行結果