⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 functions.js

📁 07年做得人力资源管理系统
💻 JS
字号:
function checking(flag,href){
	this.href = href;
  	if(flag==true){
  		window.alert("Sucessed!");
  		window.location.href=this.href;
  	}else{
  		window.alert("Fail to!");
  		window.history.go(-1);
  	}
}

function del(id){
  	this.id=id;		  			
  	if(window.confirm("Do you want to delete this Record")==true){
  		window.location.href="Delete.jsp?employeeId="+this.id;
  	}
}

function backPage(){
  	window.history.go(-1); 		
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -