function loginCA(){ var d = document.getElementById("CaDiv"); d.innerHTML = ""; try{ if(!gs.OpenFJCAUSBKey()) { //alert("打开证书失败!"); return; } }catch(e){ alert("读取数字证书错误,请确认您的电脑上是否正确安装福建CA数字证书客户端软件。\n错误代码为:[3019],如有疑问,请拨打客户服务热线:0591-968806"); return; } if(!gs.ReadCertFromKey()) { gs.CloseUSBKey(); //alert("证书信息读取失败!"); return; } document.all("userCert").value = gs.GetCertData(); document.frm.action="/wssw/CaAuth1"; document.frm.submit(); }