You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
418 B

4 years ago
4 years ago
  1. var em = document.getElementById("registration_user_email");
  2. if(!em)
  3. em = document.getElementById("user_email");
  4. var ap = em.nextSibling;
  5. em.addEventListener("blur", function( event ) {
  6. if(ap.style.display != 'none' && em.value) {
  7. em.value+=ap.innerText;
  8. ap.style.display = 'none';
  9. alert('注意:清华邮箱收取外部邮件会有至多十分钟的延迟,完成注册后请稍后再查收邮件')
  10. }
  11. });