1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > 原生JS Alert提示框

原生JS Alert提示框

时间:2019-12-22 06:08:35

相关推荐

原生JS Alert提示框

一:js现有的弹出框

1.alert(message)

message为要在弹出框内显示的纯文本;

<html><script>function show_alert(){alert('hello');}</script><body><tr><td><input type=button id=btn1 name=btn1 value=alert onclick=show_alert();></td></tr></body></html>

2.确定提示框confirm

confirm(message)

message为要在提示框上显示的纯文本(不是HTML文本)

<html><script>function show_confirm(){ if(confirm('Are you sure ?'))alert('yes');elsealert('no');}</script><body><tr><td><input type=button id=btn2 name=btn2 value=confim onclick=show_confirm();></td></tr></body></html>

点击确定或回弹出以下对话框

如果点击取消,则弹出显示no的对话框

3.输入提示框prompt

prompt(text,defaultText)

text为在输入框上面显示的纯文本,defauleText为输入框中默认显示的内容;这两个参数都是可选的。

<html><script>function show_input(){ var city=prompt('请输入您的省市','山东');if(city!=null && city!=''){var str= city + '是个好地方';alert(str);}}</script><body><tr><td><input type=button id=btn3 name=btn3 value=prompt onclick=show_input();></td></tr></body></html>

山东是默认的defaultTex,如果不选择这个参数的话,文本框中为空;

点击确定后,会弹出另一个对话框:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。