13 lines
598 B
JavaScript
13 lines
598 B
JavaScript
|
|
$(function(){
|
||
|
|
$("#ifr").attr("src","../../page/worker/workerPeople/information.html");
|
||
|
|
})
|
||
|
|
|
||
|
|
function btnClick(data){
|
||
|
|
if(data=="1"){
|
||
|
|
$("#ifr").attr("src","../../page/worker/workerPeople/information.html");
|
||
|
|
document.getElementById("xxBtn").style.backgroundColor="#02A7F0";
document.getElementById("kqBtn").style.backgroundColor="#027DB4";
|
||
|
|
}else if(data=="2"){
|
||
|
|
$("#ifr").attr("src","../../page/worker/workerAttendance/attendance.html");
|
||
|
|
document.getElementById("xxBtn").style.backgroundColor="#027DB4";
document.getElementById("kqBtn").style.backgroundColor="#02A7F0";
|
||
|
|
}
|
||
|
|
}
|