JavaScript中BOM对象应用的一些实例


//window.open('http://wasabi.iteye.com/','_self');	//打开新窗口
//window.close();	//关闭当前浏览器
//window.status = '这是状态栏文字';

/**系统对话框*/
//if( confirm('Are you sure?') )	alert('OK~~');
// var client_name = prompt('请输入你的姓名,谢谢',"");	//输入框,第二个参数为default值


/*** 时间间隔和暂停*/
function sayHi(){	alert('Hello ~!');	}

//var iTimeoutId = setTimeout(sayHi,2000);  //等待2秒后会运行,只运行一次。
//clearTimeout(iTimeoutId);    //在setTimeout(sayHi,2000) 运行之前,取消操作,即不会运行 sayHi();
// var intervalId =  setInterval(sayHi,2000);  //每隔两秒会运行一次。
// clearInterval(intervalId);  //取消 setInterval(sayHi,2000); 的操作

/**历史*/
//history.go(-1);  	//后退一页
//history.go(1);		//前进一页
//history.back();  	//后退一页
//history.forward();	//前进一页
//history.length		//得到浏览器历史中的个数。

/** document对象 */
//document.URL = "http://www.163.com";  	//页面直接转到该URL
/**记住,要插入内容属性,必须在完全载入页面前调用write()和writeln()方法。
 * 如果任何一个方法是在页面载入后调用的,它将抹去页面的内容,显示指定的内容。*/
document.writeln('this is a writeln test!~');  //writeln()和write()方法基本一样,只是writeln方法将在字符串末尾加一个换行符(\n)
document.write('this is a write test!~');

//location.reload(true);		//重载页面,参数true代表从服务器端载入,default为false,从缓存中载入。
//var intervalId =  setInterval("location.reload(true);",10000);//每10秒重载一次。

你可能感兴趣的:(JavaScript,应用服务器,浏览器,Go)