| 思道OA常见问题|技术支持 思道OA如何集成到现有网站上 将以下代码添加到要集成的网站上,修改action=""字段中的"oa.anyoffice.net"为你的OA配置的域名或IP地址。 <form name="Form1" method="post" action="http://oa.anyoffice.net/login.aspx">
<script> function CheckForm() { if(document.getElementById("userid").value=="") { alert("请输入用户名!") document.getElementById("userid").focus(); return (false) } return (true); } </script> <form name="Form1" method="post" action="http://oa.anyoffice.net/login.aspx"> 用户名:<input name="userid" type="text"&nābsp;id="userid" maxlength="20" size="15"><br> 密码:<input name="password" type="password" id="password" maxlength="20" size="15"> <input type="submit" name="Submit" value="登录" onClick="return CheckForm()"> </form> |