1、alert( )、 confirm( )、 prompt( )方法主讲人:傅伟玉 警告框,表明某种情况的发生 window.alert( )的用法window.alert(“小心操作 ”)window对象的 alert( )方法使用 window.alert( )方法的例子图 1图 2 定义事件点击这个标题 事件处理器Function rewriteHeader() for(i=0; i 事件处理器: DisplayMessage()函数function DisplayMessage() if (confirm(“你喜欢 “ + yansei+“”作背景色吗? “) document.bgCo
2、lor = colorsidocument.form1.Textbox.value=“现在背景色变为 “+yansei+iif(i8) i=0 else+iif(i8) i=0 使用 window对象的 confirm( )方法的例子 打开提示框 确定:提示框返回用户输入的文字 取消:返回空串 null 使用格式window.prompt(“aaa”, “bbb” )window对象的 prompt( )方法 定义 onClick事件 事件处理器: prompter()函数function Prompter() text = window.prompt(“你现在肯定 .“, “ 确实是这样 “)if (text = “) document.form1.Textbox.value = “你没有输入字符 “else if(text = null)document.form1.Textbox.value = “你选了取消 ” elsedocument.form1.Textbox.value = “你输入了 : “ + text 使用 window对象的 prompt( )方法的例子window对象的 prompt( )方法的例子图 1 图 2图 4图 3