第253页 System Dialogs
byhard (byhard.com)
- 章节名:System Dialogs
- 页码:第253页
alert(); confirm();返回boolean值,点击ok(确定)的返回true, cancel(取消)返回false。 if(confirm("Are you sure")) { alert("I am glad."); } else { alert("I am sorry."); } prompt();让用户输入数据参数: 两个参数,一个文本显示,另一个是默认值: var result = prompt("What's web site?","byhard.com"); if(result != null) { alert(result); } //display print dialog window.print(); //display find dialog window.find();
21人阅读
byhard对本书的所有笔记 · · · · · ·
-
第247页 Navigating and Opening Windows
window.open(); 四个参数: the URL to load, the window target, a string of features, and...
-
第251页 Intervals and Timeouts
setTimeout()表示指定的毫秒数后调用函数或计算表达式,相当于定时任务。 两个参数:1执行的...
-
第253页 System Dialogs
-
第255页 THE LOCATION OBJECT
window.location & document.location 指向同一个对象 属性: hash "#cont...
-
第259页 THE NAVIGATOR OBJECT
浏览器属性: Detecting Plug-ins 查找插件,插件属性: name description filename length 比...
> 查看全部63篇
说明 · · · · · ·
表示其中内容是对原文的摘抄