index.js
859 Bytes
$(document).ready(function(){
$("#local").click(function(){
iframe1.document.location="/verifyBeforeForward.do?type=local";
});
$("#remote").click(function(){
iframe1.document.location="/verifyBeforeForward.do?type=remote";
});
$("#recover").click(function(){
iframe1.document.location="/prepareToRecover.do";
});
$("#changepath").click(function(){
iframe1.document.location="/updateclient/selectdirectory.jsp";
});
$("#updatePW").click(function(){
iframe1.document.location="/updateclient/updatepassword.jsp";
});
$("#logout").click(function(){
if(confirm("是否确认退出?"))
{
document.location="/updateclient/LoginOut.jsp";
}
});
if(operation=="changepassword")
{
$("#updatePW").click();
}
});