输出内容:document.write();
- 直接输出""内的内容
document.write("I love JavaScript!");
- 通过变量来输出内容
var mystr="hello world!"; document.write(mystr);
- 输出多项内容,内容之间用+号连接
var mystr="hello"; document.write(mystr+"I love JavaScript");
- 输出HTML标签,并起作用,标签使用“”括起来
var mystr="hello"; document.write(mystr+"<br>");
警告:alert(字符串或变量);
确定:confirm(str);
提问:prompt(str1,str2);
打开新窗口:
window.open([URL], [窗口名称], [参数字符串])
关闭窗口:
-
window.close()//关闭本窗口
<窗口对象>.close(); //关闭指定的窗口