Alert, Confirm, and Prompt boxes in Javascript
Sabtu, 15 Februari 2014
0
komentar
The three "commands" involved in creating alert, confirm, and prompt boxes are:
- window.alert()
- window.confirm()
- window.prompt()
window.confirm():Confirm is used to confirm a user about certain action, and decide between two choices depending on what the user chooses.
<body>
<script type="text/javascript">
window.alert("Iam an alert box!!!")
</script>
</body>
window.prompt():Prompt is used to allow a user to enter something, and do something with that info:
<body>
<script type="text/javascript">
var x=window.confirm("Are you sure?")
if (x)
window.alert("Yes!")
else
window.alert("No")
</script>
</body>
<body>
<script type="text/javascript">
var y=window.prompt("Enter your name here...")
window.alert(y)
</script>
</body>
TERIMA KASIH ATAS KUNJUNGAN SAUDARA
Judul: Alert, Confirm, and Prompt boxes in Javascript
Ditulis oleh Unknown
Rating Blog 5 dari 5
Semoga artikel ini bermanfaat bagi saudara. Jika ingin mengutip, baik itu sebagian atau keseluruhan dari isi artikel ini harap menyertakan link dofollow ke https://androidpopuler.blogspot.com/2014/02/alert-confirm-and-prompt-boxes-in.html. Terima kasih sudah singgah membaca artikel ini.Ditulis oleh Unknown
Rating Blog 5 dari 5
0 komentar:
Posting Komentar